UNPKG

@payfit/unity-illustrations

Version:

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