UNPKG

@payfit/unity-illustrations

Version:

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