UNPKG

@lunit/oui

Version:

Lunit Oncology UI components

7 lines (6 loc) 328 B
import { jsx as _jsx } from "react/jsx-runtime"; import BaseLinearProgress from './LinearProgress.styled'; function LinearProgress({ barColor, progress, height = 4, ...otherProps }) { return (_jsx(BaseLinearProgress, { value: progress, height: height, barColor: barColor, ...otherProps })); } export default LinearProgress;