UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

27 lines (26 loc) 376 B
export interface EmojiProps { /** * 名称 */ name: string; /** * class 属性 */ className?: string; /** * 禁用 */ disabled?: boolean; /** * 链接 */ link?: boolean; /** * 加载 */ loading?: boolean; /** * 尺寸 */ size?: 'small' | 'medium' | 'large' | 'big'; }