UNPKG

styled-icons

Version:

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

14 lines (13 loc) 817 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: "M21.704 5.29l-2.997-2.997A.996.996 0 0018 2H6a.996.996 0 00-.707.293L2.296 5.29A.994.994 0 002 5.999V19a2 2 0 002 2h16a2 2 0 002-2V5.999a.994.994 0 00-.296-.709zM6.414 4h11.172l1 1H5.414l1-1zM17 13v1H7v-4h2v2h6v-2h2v3z", key: "k0" }))); }); Archive.displayName = 'Archive'; export var ArchiveDimensions = { height: 24, width: 24 };