type Props = { size: string; } const Component = ({ size = 'medium' }: Props) => ( <div className={cn('spinner', size)} /> );