legion-vue-core
Version:
29 lines (27 loc) • 501 B
TypeScript
import { COLOR, SIZE } from '../../utilities/constant';
export interface BadgeProps {
/**
* set color of the component
*/
color?: COLOR;
/**
* set count of the component
*/
count?: string;
/**
* set offset of the component
*/
offset?: string[];
/**
* set size of the component
*/
size?: SIZE;
/**
* set text of the component
*/
text?: string;
/**
* set icon of the component
*/
icon?: any;
}