UNPKG

@payfit/unity-illustrations

Version:

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