UNPKG

react-native-fiesta

Version:

A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.

9 lines (8 loc) 391 B
import React from 'react'; import type { SkFont } from '@shopify/react-native-skia'; import { type PopperHandler, type PopperProps } from './Popper'; export interface EmojiPopperProps extends Omit<PopperProps, 'renderItem'> { emojis?: string[]; font: SkFont; } export declare const EmojiPopper: React.ForwardRefExoticComponent<EmojiPopperProps & React.RefAttributes<PopperHandler>>;