@chakra-ui/core
Version:
Responsive and accessible React UI components built with React and Emotion
21 lines (14 loc) • 515 B
TypeScript
import { BoxProps } from "../Box";
import * as React from "react";
import { FlexProps } from "../Flex";
import { IconProps } from "../Icon";
export const StatLabel: React.FC<BoxProps>;
export const StatHelpText: React.FC<BoxProps>;
export const StatNumber: React.FC<BoxProps>;
type StatArrowProps = IconProps & {
type?: "increase" | "decrease";
"aria-label"?: string;
};
export const StatArrow: React.FC<StatArrowProps>;
export const Stat: React.FC<BoxProps>;
export const StatGroup: React.FC<FlexProps>;