styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 882 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var BubbleChart = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("circle", { cx: 7.2, cy: 14.4, r: 3.2, key: "k1" }),
React.createElement("circle", { cx: 14.8, cy: 18, r: 2, key: "k2" }),
React.createElement("circle", { cx: 15.2, cy: 8.8, r: 4.8, key: "k3" })));
});
BubbleChart.displayName = 'BubbleChart';
export var BubbleChartDimensions = { height: 24, width: 24 };