@scaleflex/icons
Version:
SVG icons as React components
27 lines • 1.29 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 CropPortrait = 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": "CropPortrait",
ref: ref,
width: size,
height: size,
viewBox: "0 0 36 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M32.0559 46.8755L32.0559 3.12549L3.93091 3.12549L3.93091 46.8755H32.0559ZM35.1809 3.12549C35.1809 1.3996 33.7818 0.000488281 32.0559 0.000488281H3.93091C2.20502 0.000488281 0.805908 1.3996 0.805908 3.12549V46.8755C0.805908 48.6014 2.20502 50.0005 3.93091 50.0005H32.0559C33.7818 50.0005 35.1809 48.6014 35.1809 46.8755L35.1809 3.12549Z",
fill: color
}));
});
export default CropPortrait;