mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Added progress component
This commit is contained in:
13
lib/component/progress/MoltenProgress.tsx
Normal file
13
lib/component/progress/MoltenProgress.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user