UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

14 lines (13 loc) 322 B
import * as React from 'react'; import './Stats.css'; export declare type StatsProps = { title: string; className?: string; children?: React.ReactNode; }; export declare class Stats extends React.Component<StatsProps> { static defaultProps: { className: string; }; render(): JSX.Element; }