styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 919 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ChartBarOutline = 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: "M17 5c-.771 0-1.468.301-2 .779V4c0-1.654-1.346-3-3-3S9 2.346 9 4v4.779A2.985 2.985 0 007 8c-1.654 0-3 1.346-3 3v6h16V8c0-1.654-1.346-3-3-3zm-5-2c.551 0 1 .448 1 1v11h-2V4c0-.552.449-1 1-1zM8 15H6v-4a1.001 1.001 0 012 0v4zm10 0h-2V8a1.001 1.001 0 012 0v7zm1 6H5a1 1 0 110-2h14a1 1 0 110 2z", key: "k0" })));
});
ChartBarOutline.displayName = 'ChartBarOutline';
export var ChartBarOutlineDimensions = { height: 24, width: 24 };