UNPKG

@payfit/unity-illustrations

Version:

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