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