Skip to content

Commit

Permalink
cons Package: Fix line icons styling (#40315)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcangelini authored Jul 15, 2022
1 parent 2c23ebe commit 16e33b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/icons/src/library/line-dashed.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { Path, SVG } from '@wordpress/primitives';

const lineDashed = (
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fillRule="evenodd"
d="M5 11.25h3v1.5H5v-1.5zm5.5 0h3v1.5h-3v-1.5zm8.5 0h-3v1.5h3v-1.5z"
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/line-dotted.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { Path, SVG } from '@wordpress/primitives';

const lineDotted = (
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fillRule="evenodd"
d="M5.25 11.25h1.5v1.5h-1.5v-1.5zm3 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5zm1.5 0h1.5v1.5h-1.5v-1.5zm4.5 0h-1.5v1.5h1.5v-1.5z"
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/line-solid.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { Path, SVG } from '@wordpress/primitives';

const lineSolid = (
<SVG xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none">
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path d="M5 11.25h14v1.5H5z" />
</SVG>
);
Expand Down

0 comments on commit 16e33b9

Please sign in to comment.