interface CommonProps {
    customAttribute?: {
        attribute: string;
        value: string | number;
    };
    isLoading?: boolean;
    negativeMargins?: boolean | {
        left: boolean;
        right: boolean;
    };
}

Properties

customAttribute?: {
    attribute: string;
    value: string | number;
}

Used for tests. Clickable and requested subcomponents will be suffixed with "-[ComponentName]".

isLoading?: boolean

If true, a loading skeleton will be rendered instead of the component.

negativeMargins?: boolean | {
    left: boolean;
    right: boolean;
}

Negative margins.