Skip to content

Commit

Permalink
Fixed svg rule
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz committed Apr 10, 2024
1 parent db98909 commit 363aa0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/components/style/thumbGeoms/CircleThumb.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class CircleThumb extends React.Component {
<div className="ms-thumb-geom">
<svg xmlns="http://www.w3.org/2000/svg" viewBox={"0 0 100 100"}>
<svg height="100" width="100">
<circle cx="50" cy="50" r="50" stroke={color || this.props.stroke} stroke-width={weight || this.props.strokeWidth} fill={fillColor || this.props.fillColor} /> {// eslint-disable-line -- TODO: need to be fixed
<circle cx="50" cy="50" r="50" stroke={color || this.props.stroke} strokeWidth={weight || this.props.strokeWidth} fill={fillColor || this.props.fillColor} /> {
}
</svg>
/*<path
Expand Down

0 comments on commit 363aa0d

Please sign in to comment.