UNPKG

@payfit/unity-illustrations

Version:

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