solrkit
Version:
 
15 lines (14 loc) • 456 B
TypeScript
/// <reference types="react" />
import * as React from 'react';
import { SemanticCOLORS } from 'semantic-ui-react';
interface SingleNumberProps {
value: number;
label: string;
horizontal?: boolean;
color?: SemanticCOLORS;
size?: 'mini' | 'tiny' | 'small' | 'large' | 'huge';
}
declare class SingleNumber extends React.Component<SingleNumberProps> {
render(): JSX.Element;
}
export { SingleNumberProps, SingleNumber };