UNPKG

328 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface TagProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 color?: string;
7 pill?: boolean;
8 tag?: React.ElementType;
9 cssModule?: CSSModule;
10}
11
12declare class Tag extends React.Component<TagProps> {}
13export default Tag;