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