Button
<Button primary={false} size={'n'}>Текст на кнопке</Button>
interface ButtonProps {
primary?: boolean
size?: 'xl' | 'l' | 'n' | 's' | 'xs'
}
<Button primary={false} size={'n'}>Текст на кнопке</Button>
interface ButtonProps {
primary?: boolean
size?: 'xl' | 'l' | 'n' | 's' | 'xs'
}