UNPKG

@payfit/unity-illustrations

Version:

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