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