UNPKG

styled-icons

Version:

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

15 lines (14 loc) 834 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var LineChart = 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: "M3 3v17a1 1 0 001 1h17v-2H5V3H3z", key: "k0" }), React.createElement("path", { d: "M15.293 14.707a.999.999 0 001.414 0l5-5-1.414-1.414L16 12.586l-2.293-2.293a.999.999 0 00-1.414 0l-5 5 1.414 1.414L13 12.414l2.293 2.293z", key: "k1" }))); }); LineChart.displayName = 'LineChart'; export var LineChartDimensions = { height: 24, width: 24 };