mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-11 09:13:29 +02:00
feat(skills): lists skills component of portfolio
This commit is contained in:
@@ -0,0 +1,13 @@
|
|||||||
|
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user