mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-07 07:43:31 +02:00
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import type { ReactElement } from "react";
|
|
|
|
interface SkillsProps {
|
|
label: string;
|
|
}
|
|
|
|
export default function Skills({ label }: SkillsProps): ReactElement {
|
|
return (
|
|
<span className="border border-ctp-text rounded-full px-3 py-1 text-sm text-ctp-text transition-colors duration-300 hover:border-ctp-green hover:text-ctp-green">
|
|
{label}
|
|
</span>
|
|
);
|
|
}
|