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