@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 939 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Cut = /*#__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.83 2.44a1 1 0 0 0-1.66 1.12l4.8 7.11-2.33 3.68A3.99 3.99 0 0 0 3 18a4 4 0 1 0 7.2-2.4l1.98-3.12 1.89 2.8A3.99 3.99 0 0 0 17 22a4 4 0 1 0-1.25-7.8l-3.62-5.38-4.3-6.38zM5 18a2 2 0 1 1 4 0 2 2 0 0 1-4 0zm10 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0zM14.52 8.79l3.33-5.26a1 1 0 0 0-1.7-1.07L13.3 6.98l1.22 1.81z"
}));
});
Cut.displayName = 'Cut';
export var CutDimensions = {
height: 24,
width: 24
};