UNPKG

@payfit/unity-illustrations

Version:

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