UNPKG

@age/quantum

Version:
21 lines (18 loc) 506 B
import React from 'react'; export interface TagProps { bold?: boolean; inverted?: boolean; onClose?: React.MouseEventHandler<HTMLButtonElement>; size?: 'small' | 'medium' | 'large'; skin?: 'neutral' | 'primary' | 'success' | 'warning' | 'error'; stroked?: boolean; text?: string; theme?: { colors?: object; components?: { tag?: object; }; spacing?: object; }; } export default class Tag extends React.Component<TagProps> {}