@flodesk/grain 11.4.2 → 11.5.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.
- package/es/icons/icon-brush.js +20 -0
- package/es/icons/index.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import "core-js/modules/es.object.assign.js";
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
7
|
+
|
|
8
|
+
var IconBrush = function IconBrush(props) {
|
|
9
|
+
return ___EmotionJSX("svg", _extends({
|
|
10
|
+
viewBox: "0 0 16 24",
|
|
11
|
+
fill: "none",
|
|
12
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
13
|
+
}, props), ___EmotionJSX("path", {
|
|
14
|
+
d: "M1 13V2.00034C1 1.44809 1.44767 1.00038 1.99993 1.00034L7 1M1 13V16C1 16.5523 1.44772 17 2 17H5C5.55228 17 6 17.4477 6 18V22C6 22.5523 6.44772 23 7 23H9C9.55228 23 10 22.5523 10 22V18C10 17.4477 10.4477 17 11 17H14C14.5523 17 15 16.5523 15 16V13M1 13H15M15 13V2.00041C15 1.44813 14.5523 1.00041 14 1.00041H11M11 1.00041V10M11 1.00041L7 1M7 1V7",
|
|
15
|
+
stroke: "currentColor",
|
|
16
|
+
strokeWidth: "2"
|
|
17
|
+
}));
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export default IconBrush;
|
package/es/icons/index.js
CHANGED
|
@@ -88,4 +88,5 @@ export { default as IconContentAlignTop } from './icon-content-align-top';
|
|
|
88
88
|
export { default as IconContentAlignCenter } from './icon-content-align-center';
|
|
89
89
|
export { default as IconContentAlignBottom } from './icon-content-align-bottom';
|
|
90
90
|
export { default as IconColumnOne } from './icon-column-one';
|
|
91
|
-
export { default as IconColumnTwo } from './icon-column-two';
|
|
91
|
+
export { default as IconColumnTwo } from './icon-column-two';
|
|
92
|
+
export { default as IconBrush } from './icon-brush';
|