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