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) 247 B
import React from 'react'; export interface StarProps { x: number; y: number; autoplay?: boolean; color?: string; } export declare const Star: React.MemoExoticComponent<({ x, y, autoplay, color }: StarProps) => React.JSX.Element>;