UNPKG

@payfit/unity-illustrations

Version:

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