UNPKG

@payfit/unity-illustrations

Version:

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