UNPKG

@payfit/unity-illustrations

Version:

21 lines (20 loc) 614 B
import { IllustrationAsset, BaseAnimatedImageAsset } from './types.js'; export type PartyAnimationAsset = IllustrationAsset<BaseAnimatedImageAsset & { readonly name: 'PartyAnimation'; }>; /** * PartyAnimation animated illustration asset (1600x816) * @example * ```tsx * import { Illustration } from '@payfit/unity-illustrations' * import PartyAnimation from '@payfit/unity-illustrations/assets/PartyAnimation' * * <Illustration * variant="picture" * src={PartyAnimation} * alt="Party animation" * /> * ``` */ declare const PartyAnimation: PartyAnimationAsset; export default PartyAnimation;