mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
14 lines
299 B
TypeScript
14 lines
299 B
TypeScript
import type { ThemedProgressProps } from "$/types/Progress";
|
|
import Progress from "./Progress";
|
|
|
|
|
|
export default function MoltenProgress(props: ThemedProgressProps){
|
|
return (
|
|
<Progress
|
|
backgroundColor="var(--color-gray-300)"
|
|
progressColor="var(--color-orange-600)"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|