@appbuckets/react-ui
Version:
Just Another React UI Framework
14 lines (13 loc) • 333 B
TypeScript
import {
UIMutableComponentProps,
AppBucketsIcon,
AppearanceProps,
} from '../generic';
import { IconProps } from '../Icon';
export interface BadgeProps
extends UIMutableComponentProps<StrictBadgeProps>,
AppearanceProps {}
export interface StrictBadgeProps {
/** Icon shorthand */
icon?: AppBucketsIcon<IconProps>;
}