UNPKG

@payfit/unity-illustrations

Version:

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