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