export type ConfigProps = {
    label: string;
    key: string;
    buttonText: string;
    color: string;
    buttonType: string;
    size: string;
    plain: boolean;
    text: boolean;
    round: boolean;
    circle: boolean;
    disabled: boolean;
    linkUrl: string;
};
