UNPKG

@payfit/unity-illustrations

Version:

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