@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 869 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowStepIn = /*#__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 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M14 2c.41 0 .75.34.75.75v11.13l3.96-4.15a.75.75 0 1 1 1.08 1.04l-5.25 5.5a.75.75 0 0 1-1.08 0l-5.25-5.5a.75.75 0 0 1 1.08-1.04l3.96 4.15V2.75c0-.41.34-.75.75-.75Zm0 24a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"
}));
});
ArrowStepIn.displayName = 'ArrowStepIn';
export var ArrowStepInDimensions = {
height: 28,
width: 28
};