@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 982 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowTurnBidirectionalDownRight = /*#__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: "M17.7 3.3a1 1 0 1 0-1.4 1.4L18.58 7H11.5A4.5 4.5 0 0 0 7 11.5v7.09l-2.3-2.3a1 1 0 1 0-1.4 1.42l4 4a1 1 0 0 0 1.4 0l4-4a1 1 0 0 0-1.4-1.42L9 18.6v-7.1A2.5 2.5 0 0 1 11.5 9h7.09l-2.3 2.3a1 1 0 1 0 1.42 1.4l4-4a1 1 0 0 0 0-1.4l-4-4z"
}));
});
ArrowTurnBidirectionalDownRight.displayName = 'ArrowTurnBidirectionalDownRight';
export var ArrowTurnBidirectionalDownRightDimensions = {
height: 24,
width: 24
};