XeNote/components/Skill.js

5 lines
148 B
JavaScript
Raw Normal View History

2023-12-26 01:28:08 +00:00
export default function Skill({ label, color }) {
2023-12-28 05:06:20 +00:00
return <div className={`bg-slate-500 text-white rounded-xl px-2 py-1 text-xs`}>{label}</div>
2023-12-26 01:28:08 +00:00
}