@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 851 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowRight = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M3.75 24c0-.83.67-1.5 1.5-1.5h31.84l-12.4-12.18a1.5 1.5 0 1 1 2.11-2.14l15 14.75.02.02a1.5 1.5 0 0 1-.04 2.14L26.8 39.82a1.5 1.5 0 1 1-2.1-2.14L37.09 25.5H5.25a1.5 1.5 0 0 1-1.5-1.5z"
}));
});
ArrowRight.displayName = 'ArrowRight';
export var ArrowRightDimensions = {
height: 48,
width: 48
};