@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
14 lines • 388 B
text/typescript
import { DivProps } from "../types/index.mjs";
import { EmojiType } from "./utils.mjs";
import { Ref } from "react";
//#region src/FluentEmoji/type.d.ts
interface FluentEmojiProps extends DivProps {
emoji: string;
ref?: Ref<HTMLImageElement>;
size?: number;
type?: EmojiType;
unoptimized?: boolean;
}
//#endregion
export { FluentEmojiProps };
//# sourceMappingURL=type.d.mts.map