UNPKG

@payfit/unity-illustrations

Version:

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