Skip to content

Commit

Permalink
Icons: Remove hardcoded color from sidesAxial and sidesBottom icons (#…
Browse files Browse the repository at this point in the history
…64174)

Co-authored-by: t-hamano <[email protected]>
Co-authored-by: jasmussen <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2024
1 parent a528233 commit fac76e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions packages/icons/src/library/sides-axial.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ import { SVG, Path } from '@wordpress/primitives';
const sidesAxial = (
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M8.2 5.3h8V3.8h-8v1.5zm0 14.5h8v-1.5h-8v1.5zm3.5-6.5h1v-1h-1v1zm1-6.5h-1v.5h1v-.5zm-1 4.5h1v-1h-1v1zm0-2h1v-1h-1v1zm0 7.5h1v-.5h-1v.5zm1-2.5h-1v1h1v-1zm-8.5 1.5h1.5v-8H4.2v8zm14.5-8v8h1.5v-8h-1.5zm-5 4.5v-1h-1v1h1zm-6.5 0h.5v-1h-.5v1zm3.5-1v1h1v-1h-1zm6 1h.5v-1h-.5v1zm-8-1v1h1v-1h-1zm6 0v1h1v-1h-1z"
style={ {
fill: '#1e1e1e',
fillRule: 'evenodd',
clipRule: 'evenodd',
} }
/>
</SVG>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/src/library/sides-bottom.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const sidesBottom = (
d="m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z"
style={ { opacity: 0.25 } }
/>
<Path d="m16.5 19.5h-9v-1.5h9z" style={ { fill: '#1e1e1e' } } />
<Path d="m16.5 19.5h-9v-1.5h9z" />
</SVG>
);

Expand Down

0 comments on commit fac76e7

Please sign in to comment.