react-native-fiesta
Version:
A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.
11 lines (10 loc) • 341 B
TypeScript
import React from 'react';
import { type SkFont } from '@shopify/react-native-skia';
export interface EmojiProps {
x?: number;
y?: number;
autoHide?: boolean;
emoji?: string;
font: SkFont;
}
export declare const Emoji: React.MemoExoticComponent<({ x, y, autoHide, emoji, font }: EmojiProps) => React.JSX.Element | null>;