UNPKG

@chief-editor/ui

Version:

UI Component for chief editor

9 lines (8 loc) 326 B
/// <reference types="react" /> import { UnionOmit } from '@co-hooks/util'; import { IBadgeProps } from './Badge'; export interface IBadgeDot { supCls?: string; } export declare type IBadgeDotProps = UnionOmit<IBadgeDot, Omit<IBadgeProps, 'content'>>; export declare function BadgeDot(props: IBadgeDotProps): JSX.Element;