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