UNPKG

@payfit/unity-illustrations

Version:

21 lines (20 loc) 507 B
import { IllustrationAsset, BaseSvgAsset } from './types.js'; export type PersonAsset = IllustrationAsset<BaseSvgAsset & { readonly name: 'Person'; }>; /** * Person illustration asset * @example * ```tsx * import { Illustration } from '@payfit/unity-illustrations' * import Person from '@payfit/unity-illustrations/assets/Person' * * <Illustration * illustration={Person} * alt="Person illustration" * size="md" * /> * ``` */ declare const Person: PersonAsset; export default Person;