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