UNPKG

@payfit/unity-illustrations

Version:

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