2023-12-30 01:17:02 +00:00
|
|
|
export interface SkillProps {
|
|
|
|
label: string
|
|
|
|
link?: string
|
|
|
|
}
|
|
|
|
|
2024-01-07 18:05:04 +00:00
|
|
|
export default function Skill({ label, link = '#' }: SkillProps) {
|
2023-12-30 01:17:02 +00:00
|
|
|
return (
|
|
|
|
<a href={link} target="_blank" style={{ textDecoration: 'none !important' }}>
|
2024-01-07 03:04:57 +00:00
|
|
|
{label}
|
2023-12-30 01:17:02 +00:00
|
|
|
</a>
|
|
|
|
)
|
|
|
|
}
|