/// import { Icons } from '../Icon/icon.constants'; export default interface ButtonComponentProperties { id?: string; variant?: 'simple' | 'important' | 'primary' | 'secondary' | 'flat' | 'outlined' | 'contained' | 'next' | 'back' | 'perspective' | 'delete'; label?: string; shape?: 'circle'; type?: 'submit' | 'reset'; title?: string; bubble?: string | number; children?: React.ReactNode | string | React.ReactNode[]; onClick?: () => void; icon?: Icons; active?: boolean; detail?: string | number; size?: 'small' | 'medium' | 'large'; adaptative?: boolean; expand?: boolean; className?: string; disabled?: boolean; }