@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 855 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Crop = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M7 15.5c0 .78.6 1.42 1.36 1.5H21a1 1 0 0 1 .12 2H19v2a1 1 0 0 1-2 .12V19H8.5A3.5 3.5 0 0 1 5 15.7V7H3a1 1 0 0 1-.12-2H5V3a1 1 0 0 1 2-.12V15.5zM8 5h7.5A3.5 3.5 0 0 1 19 8.3V16h-2V8.5c0-.78-.6-1.42-1.36-1.5H8V5z"
}));
});
Crop.displayName = 'Crop';
export var CropDimensions = {
height: 24,
width: 24
};