UNPKG

@payfit/unity-illustrations

Version:

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