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