UNPKG

react-lightning-design-system

Version:

Salesforce Lightning Design System components built with React

13 lines (12 loc) 263 B
import { FC, HTMLAttributes } from 'react'; /** * */ export type BadgeProps = { type?: 'inverse' | 'lightest' | 'success' | 'warning' | 'error'; label?: string; } & HTMLAttributes<HTMLSpanElement>; /** * */ export declare const Badge: FC<BadgeProps>;