UNPKG

@payfit/unity-illustrations

Version:

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