UNPKG

styled-icons

Version:

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

22 lines (21 loc) 1.22 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.PackageIcon = 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_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("line", { x1: 16.5, x2: 7.5, y1: 9.4, y2: 4.21, key: "k0" }), React.createElement("path", { d: "M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z", key: "k1" }), React.createElement("polyline", { points: "3.27 6.96 12 12.01 20.73 6.96", key: "k2" }), React.createElement("line", { x1: 12, x2: 12, y1: 22.08, y2: 12, key: "k3" }))); }); exports.PackageIcon.displayName = 'PackageIcon'; exports.PackageIconDimensions = { height: 24, width: 24 };