UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 279 B
import { type TagProps as AntTagProps } from 'antd'; import { ReactNode } from 'react'; export interface TagProps extends AntTagProps { icon?: ReactNode; size?: 'default' | 'small'; } declare const Tag: import("react").NamedExoticComponent<TagProps>; export default Tag;