import { HTMLAttributes, ReactNode } from 'react'; export interface ChipProps extends HTMLAttributes { children: ReactNode; isDark?: boolean; size?: 'L' | 'S'; }