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