@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 993 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowCircleRight = /*#__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: "M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20zm.78 5.47-.08-.07a.75.75 0 0 0-.89-.01l-.09.08-.07.08c-.2.27-.2.62 0 .89l.07.1 2.72 2.71H7.65c-.33.05-.6.32-.64.65L7 12v.1c.05.33.32.6.65.64l.1.01h6.69l-2.72 2.72-.07.08a.75.75 0 0 0 1.05 1.05l.08-.07 4-4 .07-.08c.2-.26.2-.62.01-.89l-.08-.09-4-4-.08-.07.08.07z"
}));
});
ArrowCircleRight.displayName = 'ArrowCircleRight';
export var ArrowCircleRightDimensions = {
height: 24,
width: 24
};