UNPKG

@payfit/unity-illustrations

Version:

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