UNPKG

@surveycake/rc

Version:

react component of surveycake

10 lines (9 loc) 318 B
import { HTMLAttributes, FC } from 'react'; import { ColorProp } from '../types/color'; export interface TagProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color'> { className?: string; color?: ColorProp; variant?: 'filled' | 'outlined'; } declare const Tag: FC<TagProps>; export default Tag;