Fixed Bar component

Moved width prop from direct prop to sx prop, updated PropTypes to accept string|object.
This commit is contained in:
anton.strover
2025-08-29 11:24:57 +01:00
parent 0ad759a384
commit fd951bfdd5

View File

@@ -23,10 +23,10 @@ const Bar = ({ width, height, backgroundColor, borderRadius, children }) => {
return (
<Box
position="relative"
width={width}
height={height}
backgroundColor={backgroundColor}
sx={{
width: width,
borderRadius: borderRadius || theme.spacing(1.5),
}}
>
@@ -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,