UNPKG

@lobehub/ui

Version:

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

23 lines (22 loc) 606 B
/// <reference types="react" /> import { DivProps } from "../types"; import { EmojiType } from './utils'; export interface FluentEmojiProps extends DivProps { /** * @description The emoji character to be rendered */ emoji: string; /** * @description Size of the emoji * @default 40 */ size?: number; /** * @description The type of the FluentUI emoji set to be used * @default '3d' */ type?: EmojiType; unoptimized?: boolean; } declare const FluentEmoji: import("react").NamedExoticComponent<FluentEmojiProps>; export default FluentEmoji;