import React from 'react'; import { Box, IBoxProps, Text, ITextProps, Icon } from '../../primitives'; import { usePropsConfig } from '../../../theme'; export const StatLabel = ({ style, ...props }: ITextProps) => { return ( {props.children} ); }; export const StatNumber = ({ style, ...props }: ITextProps) => { let newProps = usePropsConfig('Stat', props); return ( {props.children} ); }; export const StatHelpText = ({ style, ...props }: IBoxProps) => { let newProps = usePropsConfig('Stat', props); return ( {props.children} ); }; export const StatArrow = ({ type, ...props }: { type?: 'increase' | 'decrease'; }) => { return ( ); }; export const StatGroup = ({ style, ...props }: IBoxProps) => { let newProps = usePropsConfig('Stat', props); return ; }; const Stat = ({ style, ...props }: IBoxProps) => { return ; }; export default Stat;