UNPKG

@payfit/unity-illustrations

Version:

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