2023-09-30 02:18:27 +00:00
|
|
|
type StackBarValue = {
|
|
|
|
colour?: string | Record<number, string>;
|
|
|
|
value: number;
|
|
|
|
};
|
|
|
|
|
2023-09-30 04:18:39 +00:00
|
|
|
type StackBarOptionalProps = {
|
|
|
|
barProps?: import('@mui/material').LinearProgressProps;
|
|
|
|
thin?: boolean;
|
|
|
|
underlineProps?: import('@mui/material').BoxProps;
|
|
|
|
};
|
|
|
|
|
|
|
|
type StackBarProps = StackBarOptionalProps & {
|
2023-09-30 02:18:27 +00:00
|
|
|
value: StackBarValue | Record<string, StackBarValue>;
|
|
|
|
};
|