UNPKG

@payfit/unity-illustrations

Version:

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