decentraland-ui
Version:
Decentraland's UI components and styles
11 lines (10 loc) • 313 B
TypeScript
import React from 'react';
import { Rarity } from '@dcl/schemas/dist/dapps/rarity';
import './AssetImage.css';
export declare type AssetImageProps = {
name: string;
rarity: Rarity;
src: string;
className?: string;
};
export declare const AssetImage: (props: AssetImageProps) => React.JSX.Element;