File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ export { default as search } from './library/search';
225225export { default as seen } from './library/seen' ;
226226export { default as unseen } from './library/unseen' ;
227227export { default as scheduled } from './library/scheduled' ;
228+ export { default as send } from './library/send' ;
228229export { default as separator } from './library/separator' ;
229230export { default as settings } from './library/settings' ;
230231export { default as shadow } from './library/shadow' ;
Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments