import { ButtonsBox } from '@megafon/ui-shared';
Кнопки имеют одинаковую ширину.
<ButtonsBox button={{ title: 'Текст кнопки 1', }} extraButton={{ type: 'outline', title: 'Текст кнопки 2 длиннее', }} />
<ButtonsBox button={{ type: 'primary', title: 'Текст кнопки', }} /> <ButtonsBox button={{ type: 'primary', title: 'Текст кнопки', icon: <BalanceIcon />, }} /> <ButtonsBox button={{ type: 'primary', icon: <BalanceIcon />, }} /> <ButtonsBox button={{ type: 'primary', title: 'Текст кнопки', showArrow: true, }} />
<ButtonsBox button={{ type: 'outline', title: 'Текст кнопки', }} /> <ButtonsBox button={{ type: 'outline', title: 'Текст кнопки', icon: <BalanceIcon />, }} /> <ButtonsBox button={{ type: 'outline', icon: <BalanceIcon />, }} /> <ButtonsBox button={{ type: 'outline', title: 'Текст кнопки', showArrow: true, }} />
<ButtonsBox button={{ type: 'primary', title: 'Текст кнопки', }} />
<ButtonsBox button={{ type: 'primary', title: 'Текст кнопки 1', }} extraButton={{ type: 'outline', title: 'Текст кнопки 2 длиннее', }} />
<ButtonsBox align='center' button={{ type: 'outline', title: 'Текст кнопки', }} />
<ButtonsBox align='center' button={{ type: 'primary', title: 'Текс кнопки 1', }} extraButton={{ type: 'outline', title: 'Текст кнопки 2 длиннее', }} />
<ButtonsBox button={{ type: 'primary', title: 'Link', href: '#', target: '_self', }} /> <ButtonsBox button={{ type: 'outline', title: 'onClick', onClick: () => undefined, }} /> <ButtonsBox button={{ type: 'outline', title: 'Download', href: 'file.pdf', download: true, }} />