UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 718 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var BoxRemove = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M13 1H3L0 4v10.5a.5.5 0 00.5.5h15a.5.5 0 00.5-.5V4l-3-3zm-3 9v3H6v-3H3l5-4 5 4h-3zM2.414 3l1-1h9.171l1 1H2.414z", key: "k0" }))); }); BoxRemove.displayName = 'BoxRemove'; export var BoxRemoveDimensions = { height: 16, width: 16 };