styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
19 lines (18 loc) • 892 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Archive = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("polyline", { points: "21 8 21 21 3 21 3 8", key: "k0" }),
React.createElement("rect", { width: 22, height: 5, x: 1, y: 3, key: "k1" }),
React.createElement("line", { x1: 10, x2: 14, y1: 12, y2: 12, key: "k2" })));
});
Archive.displayName = 'Archive';
export var ArchiveDimensions = { height: 24, width: 24 };