import { ComponentProps } from 'react'; import { Button } from '@@/buttons'; import { ButtonOptions } from './types'; export function buildConfirmButton( label = 'Confirm', color: ComponentProps['color'] = 'primary', timeout = 0 ): ButtonOptions { return { label, color, value: true, timeout }; } export function buildCancelButton(label = 'Cancel'): ButtonOptions { return { label, color: 'default', value: false, }; }