UNPKG

@payfit/unity-illustrations

Version:

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