UNPKG

@payfit/unity-illustrations

Version:

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