UNPKG

styled-icons

Version:

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

14 lines (13 loc) 805 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Archive = 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 12h-3a.5.5 0 000 1h3a.5.5 0 000-1zm7-7H3a1 1 0 100 2h17a1 1 0 100-2zm-2 3H5a1 1 0 00-1 1v8c0 1.654 1.346 3 3 3h9c1.654 0 3-1.346 3-3V9a1 1 0 00-1-1zm-2 10H7c-.552 0-1-.449-1-1v-7h11v7c0 .551-.448 1-1 1z", key: "k0" }))); }); Archive.displayName = 'Archive'; export var ArchiveDimensions = { height: 24, width: 24 };