export interface ButtonDetails {
    label: string;
    icon: string;
    color: string;
    onclick: () => void;
}
