@scaleflex/icons
Version:
SVG icons as React components
38 lines • 1.91 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var BoxAlignLeft = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "BoxAlignLeft",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("g", {
id: "ic-box-align-left"
}, /*#__PURE__*/React.createElement("path", {
id: "ic-sidebar-right",
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.01146 0.000488281C0.900542 0.000488281 -3.8147e-05 0.901065 -3.8147e-05 2.01198V47.989C-3.8147e-05 49.0999 0.900542 50.0005 2.01146 50.0005C3.12238 50.0005 4.02295 49.0999 4.02295 47.989V2.01198C4.02295 0.901065 3.12238 0.000488281 2.01146 0.000488281Z",
fill: color
}), /*#__PURE__*/React.createElement("g", {
id: "ic-desc"
}, /*#__PURE__*/React.createElement("path", {
d: "M12.9999 21.001H46.9997C48.6569 21.001 50 19.6579 50 18.0003C50 16.3431 48.6573 15 46.9997 15H12.9999C11.3431 15.0004 10 16.3435 10 18.0007C10 19.6579 11.3431 21.001 12.9999 21.001Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M12.9999 35.2737H31.4997C33.1569 35.2737 34.5 33.9306 34.5 32.273C34.5 30.6158 33.1573 29.2727 31.4997 29.2727H12.9999C11.3431 29.2731 10 30.6162 10 32.2734C10 33.9306 11.3431 35.2737 12.9999 35.2737Z",
fill: color
}))));
});
export default BoxAlignLeft;