import { cn } from '~/utils/cn'; export interface ChipProps { text: string; className?: string; } export default function Chip({ text, className }: ChipProps) { return ( {text} ); }