UNPKG

@payfit/unity-illustrations

Version:

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