UNPKG

@payfit/unity-illustrations

Version:

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