@lobehub/fluent-emoji
Version:
Fluent Emoji are a collection of familiar, friendly, and modern emoji from Microsoft
14 lines (13 loc) • 516 B
TypeScript
import { ElementType } from 'react';
import { type HTMLAttributes } from 'react';
import { EmojiType } from "../getFluentEmojiCDN/utils";
export interface FluentEmojiProps extends HTMLAttributes<HTMLDivElement> {
as?: ElementType;
cdn?: 'aliyun' | 'unpkg';
emoji: string;
size?: number;
type?: EmojiType | 'pure';
unoptimized?: boolean;
}
declare const FluentEmoji: import("react").ForwardRefExoticComponent<FluentEmojiProps & import("react").RefAttributes<any>>;
export default FluentEmoji;