UNPKG

@payfit/unity-illustrations

Version:

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