UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

17 lines (16 loc) 426 B
/// <reference types="react" /> import { IChildren } from '../../../types'; export interface IBadge extends IChildren { /** * Options availables */ variant: 'neutral' | 'info' | 'success' | 'warning' | 'critical'; /** * Color states */ state?: 'active' | 'disabled'; addonStart?: React.ReactNode; addonEnd?: React.ReactNode; _t?: (text: string) => string; useT?: boolean; }