discotools / types /badge.ts
enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
raw
history blame contribute delete
703 Bytes
export interface BadgeType {
text: {
value: string;
colour: string;
gradient: {
enabled: boolean;
colours?: any[];
angle: any;
type?: string;
};
stringColor?: string;
};
colour: string;
stringColor?: string;
gradient: {
enabled: boolean;
colours?: any[];
angle: any;
type?: string;
};
fontFamily: string;
fontWeight: string;
letterSpacing: number;
shinyEffect: boolean;
icon?: {
component?: string;
position: "left" | "right" | "left-right";
enabled?: boolean;
colour?: string;
stringColor?: string;
};
type: string;
radius?: number;
border?: {
width?: number;
colour?: string;
};
}