UNPKG

@payfit/unity-illustrations

Version:

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