Home > @uniformdev/design-system > AddButtonProps
AddButtonProps type
Signature:
type AddButtonProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'onChange'> & {
buttonText?: string;
onClick: () => void;
className?: string;
shortcut?: string | null;
macShortcut?: string | null;
};