UNPKG

@lobehub/ui

Version:

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

11 lines (10 loc) 293 B
import type { Ref } from 'react'; import type { EmojiType } from "./utils"; import type { DivProps } from "../types"; export interface FluentEmojiProps extends DivProps { emoji: string; ref?: Ref<HTMLImageElement>; size?: number; type?: EmojiType; unoptimized?: boolean; }