UNPKG

@payfit/unity-illustrations

Version:

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