Skip to content

Commit

Permalink
fix: fix paranoid brand icon
Browse files Browse the repository at this point in the history
  • Loading branch information
irsyadadl committed Jul 16, 2024
1 parent a75b866 commit ff1714a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/cjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3979,7 +3979,7 @@ const SvgIconBrandParanoid = props => /*#__PURE__*/React__namespace.createElemen
"data-slot": "icon",
"aria-hidden": "true"
}), /*#__PURE__*/React__namespace.createElement("path", {
stroke: "#fff",
stroke: "currentColor",
strokeWidth: 1.091,
d: "M5.667 5.25h-.5v4.835h9.42v9.498H19.5V5.25z"
}));
Expand Down
2 changes: 1 addition & 1 deletion dist/es/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3958,7 +3958,7 @@ const SvgIconBrandParanoid = props => /*#__PURE__*/React.createElement("svg", _e
"data-slot": "icon",
"aria-hidden": "true"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
stroke: "currentColor",
strokeWidth: 1.091,
d: "M5.667 5.25h-.5v4.835h9.42v9.498H19.5V5.25z"
}));
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3958,7 +3958,7 @@ const SvgIconBrandParanoid = props => /*#__PURE__*/React.createElement("svg", _e
"data-slot": "icon",
"aria-hidden": "true"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#fff",
stroke: "currentColor",
strokeWidth: 1.091,
d: "M5.667 5.25h-.5v4.835h9.42v9.498H19.5V5.25z"
}));
Expand Down
2 changes: 1 addition & 1 deletion dist/umd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3980,7 +3980,7 @@
"data-slot": "icon",
"aria-hidden": "true"
}), /*#__PURE__*/React__namespace.createElement("path", {
stroke: "#fff",
stroke: "currentColor",
strokeWidth: 1.091,
d: "M5.667 5.25h-.5v4.835h9.42v9.498H19.5V5.25z"
}));
Expand Down
2 changes: 1 addition & 1 deletion src/IconBrandParanoid.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const SvgIconBrandParanoid = (props) => (
{...props}
className={`paranoid-ic ${props.className ? props.className : "size-4"}`} data-slot="icon" aria-hidden="true">
<path
stroke="#fff"
stroke="currentColor"
strokeWidth={1.091}
d="M5.667 5.25h-.5v4.835h9.42v9.498H19.5V5.25z"
/>
Expand Down

0 comments on commit ff1714a

Please sign in to comment.