UNPKG

styled-icons

Version:

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

15 lines (14 loc) 932 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Drawer = 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: "M15.89 10.188l-4-5A.5.5 0 0011.5 5h-7a.497.497 0 00-.39.188l-4 5A.5.5 0 000 10.5V15a1 1 0 001 1h14a1 1 0 001-1v-4.5a.497.497 0 00-.11-.312zM15 11h-3.5l-2 2h-3l-2-2H1v-.325L4.74 6h6.519l3.74 4.675V11z", key: "k0" }), React.createElement("path", { d: "M11.5 8h-7a.5.5 0 010-1h7a.5.5 0 010 1zM12.5 10h-9a.5.5 0 010-1h9a.5.5 0 010 1z", key: "k1" }))); }); Drawer.displayName = 'Drawer'; export var DrawerDimensions = { height: 16, width: 16 };