Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix clipRule & fillRule
  • Loading branch information
simison committed Aug 1, 2024
commit c5a76de326f1c38e216801ff7905b501b7487d2f
4 changes: 2 additions & 2 deletions packages/icons/src/library/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { SVG, Path } from '@wordpress/primitives';
const send = (
<SVG viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<Path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M5.333 12.154c-1.03-.424-1.032-1.883-.002-2.31l12.261-5.085c1.03-.426 2.06.605 1.634 1.634l-5.084 12.262c-.427 1.03-1.886 1.027-2.31-.003l-1.896-4.603-4.603-1.895Zm6.061 1.498 1.594 3.87 3.87-9.334-5.464 5.463Zm4.403-6.524-9.333 3.87 3.87 1.593 5.463-5.463Z"
/>
</SVG>
Expand Down