interface TextButtonSkeletonProps {
    customAttribute?: {
        attribute: string;
        value: string | number;
    };
    iconPosition?: "none" | "start" | "end";
    negativeMargins?: boolean | {
        bottom: boolean;
        left: boolean;
        right: boolean;
        top: boolean;
    };
}

Properties

customAttribute?: {
    attribute: string;
    value: string | number;
}
iconPosition?: "none" | "start" | "end"
negativeMargins?: boolean | {
    bottom: boolean;
    left: boolean;
    right: boolean;
    top: boolean;
}