welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
9 lines (8 loc) • 716 B
TypeScript
import { WuiProps } from '../System';
import { BadgeOptions } from '.';
export type StyledBadgeProps = Pick<BadgeOptions, 'disabled' | 'size' | 'variant'> & {
length: number;
};
export declare const Badge: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('@xstyled/system').SystemProps<import('@xstyled/system').Theme>> & import('@xstyled/system').SystemProps<import('@xstyled/system').Theme>, Pick<BadgeOptions, "size" | "variant" | "disabled"> & {
length: number;
} & WuiProps>> & string;