Skip to content

Commit

Permalink
Icons: add new "send" icon (#64130)
Browse files Browse the repository at this point in the history
Design by:
javierarce
Co-authored-by: jasmussen <joen@automattic.com>

Reviewed by:
Co-authored-by: t-hamano <wildworks@git.wordpress.org>
  • Loading branch information
simison committed Aug 1, 2024
1 parent 1e4d427 commit 6581dfb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/icons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### New Features

- Add new `send` icon.

## 10.4.0 (2024-07-24)

## 10.3.0 (2024-07-10)
Expand Down
1 change: 1 addition & 0 deletions packages/icons/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ export { default as search } from './library/search';
export { default as seen } from './library/seen';
export { default as unseen } from './library/unseen';
export { default as scheduled } from './library/scheduled';
export { default as send } from './library/send';
export { default as separator } from './library/separator';
export { default as settings } from './library/settings';
export { default as shadow } from './library/shadow';
Expand Down
16 changes: 16 additions & 0 deletions packages/icons/src/library/send.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* WordPress dependencies
*/
import { SVG, Path } from '@wordpress/primitives';

const send = (
<SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<Path
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>
);

export default send;

0 comments on commit 6581dfb

Please sign in to comment.