@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 943 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Connected = /*#__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 20 20"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M7 4.5c0 .51-.15.98-.41 1.38L8.62 7.9a2.49 2.49 0 0 1 2.76 0l2.03-2.03a2.5 2.5 0 1 1 .7.7L12.1 8.63a2.49 2.49 0 0 1 0 2.76l2.03 2.03a2.5 2.5 0 1 1-.7.7l-2.04-2.02a2.49 2.49 0 0 1-2.76 0L6.6 14.12a2.5 2.5 0 1 1-.7-.7l2.02-2.04a2.49 2.49 0 0 1 0-2.76L5.88 6.6A2.5 2.5 0 1 1 7 4.5Z"
}));
});
Connected.displayName = 'Connected';
export var ConnectedDimensions = {
height: 20,
width: 20
};