UNPKG

@payfit/unity-illustrations

Version:

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