Merge pull request #2878 from antonstrover/fix/failed-prop-type-status

Fixed Bar component
This commit is contained in:
Alexander Holliday
2025-09-01 10:43:43 -07:00
committed by GitHub

View File

@@ -22,8 +22,8 @@ const Bar = ({ width, height, backgroundColor, borderRadius, children }) => {
return (
<Box
width={width}
position="relative"
width={width}
height={height}
backgroundColor={backgroundColor}
sx={{
@@ -36,7 +36,7 @@ const Bar = ({ width, height, backgroundColor, borderRadius, children }) => {
};
Bar.propTypes = {
width: PropTypes.string.isRequired,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired,
height: PropTypes.string.isRequired,
backgroundColor: PropTypes.string.isRequired,
borderRadius: PropTypes.string,