Type Alias: ButtonProps

ButtonProps = PropsWithChildren<Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "color"> & Partial<{ color: ButtonColor; fullWidth: boolean; size: ButtonSize; variant: ButtonVariant; }>>

Props accepted by the reusable button component.