@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.1 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Backspace = /*#__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: "M18.75 4a3.25 3.25 0 0 1 3.24 3.07l.01.18v9.5a3.25 3.25 0 0 1-3.07 3.24l-.18.01h-8.5c-.77 0-1.5-.27-2.09-.76l-.15-.13-5-4.75a3.25 3.25 0 0 1-.11-4.6l.1-.12 5-4.75a3.25 3.25 0 0 1 2.03-.88l.2-.01h8.51zm-7.3 4.4a.75.75 0 0 0-1.05 1.05l.07.08L12.94 12l-2.47 2.47-.07.08a.75.75 0 0 0 1.05 1.05l.08-.07L14 13.06l2.47 2.47.08.07a.75.75 0 0 0 1.05-1.05l-.07-.08L15.06 12l2.47-2.47.07-.08a.75.75 0 0 0-1.05-1.05l-.08.07L14 10.94l-2.47-2.47-.08-.07z"
}));
});
Backspace.displayName = 'Backspace';
export var BackspaceDimensions = {
height: 24,
width: 24
};