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;
}
