UNPKG

@kbfront/kb-ui

Version:

KB React UI Library

16 lines (15 loc) 358 B
import { FC, ReactNode } from 'react'; import './index.scss'; import { EColor } from '../../enum/index'; export declare enum EBadgeType { PILL = "pill", SQUARE = "square" } interface IProps { children: ReactNode | string; color?: EColor; type?: EBadgeType; className?: string; } declare const Badge: FC<IProps>; export default Badge;