@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 824 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var DataLine = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16 6a3 3 0 1 1 2.52 2.96l-2.03 3.36a3 3 0 0 1-4.75 3.65L8 17.84V18a3 3 0 1 1-.47-1.6l3.54-1.77A3.01 3.01 0 0 1 14 11c.48 0 .94.11 1.34.32l1.8-2.97A3 3 0 0 1 16 6z"
}));
});
DataLine.displayName = 'DataLine';
export var DataLineDimensions = {
height: 24,
width: 24
};