UNPKG

@payfit/unity-illustrations

Version:

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