Skip to content

Commit 6581dfb

Browse files
authored
Icons: add new "send" icon (#64130)
Design by: javierarce Co-authored-by: jasmussen <joen@automattic.com> Reviewed by: Co-authored-by: t-hamano <wildworks@git.wordpress.org>
1 parent 1e4d427 commit 6581dfb

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

packages/icons/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### New Features
6+
7+
- Add new `send` icon.
8+
59
## 10.4.0 (2024-07-24)
610

711
## 10.3.0 (2024-07-10)

packages/icons/src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ export { default as search } from './library/search';
225225
export { default as seen } from './library/seen';
226226
export { default as unseen } from './library/unseen';
227227
export { default as scheduled } from './library/scheduled';
228+
export { default as send } from './library/send';
228229
export { default as separator } from './library/separator';
229230
export { default as settings } from './library/settings';
230231
export { default as shadow } from './library/shadow';

packages/icons/src/library/send.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* WordPress dependencies
3+
*/
4+
import { SVG, Path } from '@wordpress/primitives';
5+
6+
const send = (
7+
<SVG viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
8+
<Path
9+
fillRule="evenodd"
10+
clipRule="evenodd"
11+
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"
12+
/>
13+
</SVG>
14+
);
15+
16+
export default send;

0 commit comments

Comments
 (0)