export interface ButtonProps {
    backgroundColor?: string;
    hoverColor?: string;
    label?: string;
    onClick?: () => void;
}
