UNPKG

styled-icons

Version:

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

20 lines (19 loc) 1.09 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var 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, __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" }))); }); PackageIcon.displayName = 'PackageIcon'; export var PackageIconDimensions = { height: 24, width: 24 };