UNPKG

styled-icons

Version:

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

14 lines (13 loc) 932 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var DocumentDelete = 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 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M19.707 7.293l-4-4A.996.996 0 0015 3H7C5.346 3 4 4.346 4 6v12c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3V8a.996.996 0 00-.293-.707zM17.586 8H16.5c-.827 0-1.5-.673-1.5-1.5V5.414L17.586 8zM17 19H7a1 1 0 01-1-1V6a1 1 0 011-1h7v1.5C14 7.879 15.121 9 16.5 9H18v9a1 1 0 01-1 1zm-2-5H9a1 1 0 110-2h6a1 1 0 110 2z", key: "k0" }))); }); DocumentDelete.displayName = 'DocumentDelete'; export var DocumentDeleteDimensions = { height: 24, width: 24 };