UNPKG

@payfit/unity-illustrations

Version:

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