UNPKG

@payfit/unity-illustrations

Version:

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