UNPKG

@payfit/unity-illustrations

Version:

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