UNPKG

@payfit/unity-illustrations

Version:

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