diff --git a/components/Chip/Chip.tsx b/components/Chip/Chip.tsx index 32df881..fc622c5 100644 --- a/components/Chip/Chip.tsx +++ b/components/Chip/Chip.tsx @@ -8,10 +8,11 @@ interface ChipProps { clicked?: boolean; onChipClick?: (label: string) => void; onlyText?: boolean; + fontWeight?: string; } /** Chip Component 1차 개발 */ -export default function Chip({ label, onDelete, clicked, onChipClick, onlyText }: ChipProps) { +export default function Chip({ label, onDelete, clicked, onChipClick, onlyText, fontWeight }: ChipProps) { const [fillStroke, setFillStroke] = useState(''); const [fillText, setFillText] = useState(''); useEffect(() => { @@ -34,7 +35,7 @@ export default function Chip({ label, onDelete, clicked, onChipClick, onlyText }