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.

11 lines (10 loc) 305 B
import React from 'react'; export interface BalloonProps { x?: number; y?: number; color?: string; r?: number; depth?: number; autoPlay?: boolean; } export declare const Balloon: React.MemoExoticComponent<({ x, y, color, r, depth, autoPlay, }: BalloonProps) => React.JSX.Element>;