UNPKG

styled-icons

Version:

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

14 lines (13 loc) 833 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Closet = 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: "M13 10.551v-.678A4.005 4.005 0 0016 6c0-2.206-1.794-4-4-4S8 3.794 8 6h2c0-1.103.897-2 2-2s2 .897 2 2-.897 2-2 2a1 1 0 00-1 1v1.551l-8.665 7.702A1.001 1.001 0 003 20h18a1.001 1.001 0 00.664-1.748L13 10.551zM5.63 18L12 12.338 18.37 18H5.63z", key: "k0" }))); }); Closet.displayName = 'Closet'; export var ClosetDimensions = { height: 24, width: 24 };