cozy-ui 135.0.0 → 135.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ export default SvgSend;
2
+ declare function SvgSend(props: any): JSX.Element;
@@ -0,0 +1,13 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ // Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/ui/send.svg` to regenerate;
3
+ import React from 'react';
4
+
5
+ function SvgSend(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 16 16"
8
+ }, props), /*#__PURE__*/React.createElement("path", {
9
+ d: "M15.594 1.252L9.75 14.927a.88.88 0 01-.66.53.821.821 0 01-.799-.253L.252 6.88a.821.821 0 01-.224-.807.88.88 0 01.553-.64L14.45.067c.374-.137.696-.067.965.212.27.279.329.603.178.972zM8.74 13.55L13.7 1.938 1.92 6.488l2.52 2.607 4.722-2.774-2.938 4.621 2.518 2.608z"
10
+ }));
11
+ }
12
+
13
+ export default SvgSend;