import React from 'react'; import Widget from '../../../Widget'; import { ProgressBar, ProgressLine, ProgressBarWithValue } from '../../../../../Components/ProgressBar'; import { Col } from 'reactstrap'; const ProgressBars: React.FC = () => { return (
Progress Bars
Default progress bars
Use the <ProgressBar /> component for simple progress bars
Progress lines
Use the <ProgressLine /> component for simple progress bars with{' '} colorClass="bg-color" prop
Progress bars with text
Use the <ProgressBarWithValue /> component for progress bars with text inside
); }; export default ProgressBars;