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