export default function Skill({ label, color }) {
switch (color) {
case "blue-500":
return
case "green-800":
return
case "yellow-800":
return
case "yellow-500":
return
default:
return null
}
}
function TypescriptSkill({ label }) {
return
{label}
}
function JavascriptSkill({ label }) {
return {label}
}
function PythonSkill({ label }) {
return {label}
}
function RustSkill({ label }) {
return {label}
}