1 | import { BoxProps } from "../Box";
|
2 | import * as React from "react";
|
3 | import { FlexProps } from "../Flex";
|
4 | import { IconProps } from "../Icon";
|
5 |
|
6 | export const StatLabel: React.FC<BoxProps>;
|
7 |
|
8 | export const StatHelpText: React.FC<BoxProps>;
|
9 |
|
10 | export const StatNumber: React.FC<BoxProps>;
|
11 |
|
12 | type StatArrowProps = IconProps & {
|
13 | type?: "increase" | "decrease";
|
14 | "aria-label"?: string;
|
15 | };
|
16 | export const StatArrow: React.FC<StatArrowProps>;
|
17 |
|
18 | export const Stat: React.FC<BoxProps>;
|
19 |
|
20 | export const StatGroup: React.FC<FlexProps>;
|