@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.44 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 NavigationGroupPrevious = 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": "NavigationGroupPrevious",
ref: ref,
width: size * (50 / 46),
height: size,
viewBox: "0 0 50 46",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M18.551 40.8888V29.5093H33.9737V16.5199H18.551V5.1405C18.551 3.95134 19.5207 3 20.6915 3H47.8595C49.0487 3 50 3.96963 50 5.1405V40.8888C50 42.0779 49.0304 43.0293 47.8595 43.0293H20.6915C19.5207 43.0293 18.551 42.0779 18.551 40.8888Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M12.9711 11.1595V16.9956C12.9711 17.5445 13.4102 18.0018 13.9407 18.0018H32.6015V28.064H13.9407C13.4102 28.064 12.9711 28.5214 12.9711 29.0703V34.9063L0 23.0146L12.9711 11.1595Z",
fill: color
}));
});
export default NavigationGroupPrevious;