import { UnknownType } from "../box/types"; export interface ButtonTypes extends StyleTypes, UnknownType { icon?: any; text?: any; children?: any; } export interface StyleTypes { isLoading?: boolean; disabled?: boolean; bgColor?: string; size: string; hasIcon?: boolean; fullwidth?: boolean; nonActiveColor: string; activeColor: string; nonActiveBgColor: string; activeBgColor: string; nonActiveBorderColor: string; activeBorderColor: string; borderRadius?: string; pad?: string; loaderSize?: string | number; }