mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import type { ThemedProgressProps } from "$/types/ProgressTypes";
|
|
import Progress from "./Progress";
|
|
|
|
|
|
export default function WarningProgress(props: ThemedProgressProps){
|
|
return (
|
|
<Progress
|
|
backgroundColor="var(--color-gray-300)"
|
|
progressColor="var(--color-yellow-500)"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|