UNPKG

@payfit/unity-illustrations

Version:

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