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