UNPKG

@payfit/unity-illustrations

Version:

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