react-native-fiesta
Version:
A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.
14 lines (13 loc) • 363 B
TypeScript
import React from 'react';
export interface FireworkParticleProps {
x: number;
y?: number;
finalPos: {
x: number;
y: number;
};
r?: number;
color: string;
autoHide?: boolean;
}
export declare const FireworkParticle: React.MemoExoticComponent<({ x, y, finalPos, r, color }: FireworkParticleProps) => React.JSX.Element>;