UNPKG

@payfit/unity-illustrations

Version:

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