UNPKG

@payfit/unity-illustrations

Version:

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