XeNote/components/Skill.js

9 lines
296 B
JavaScript
Raw Normal View History

2023-12-29 06:03:35 +00:00
export default function Skill({ label, link = "#" }) {
return (
<a href={link} target="_blank" style={{ textDecoration: 'none !important' }}>
<div className={`hover:scale-110 transition duration-100 bg-slate-500 text-white rounded-xl px-2 py-1 text-xs`}>{label}</div>
</a>
)
2023-12-26 01:28:08 +00:00
}