@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.05 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CheckboxArrowRight = /*#__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 2a3 3 0 0 1 3 3v6.5a6.5 6.5 0 0 0-8.5 8.5H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h12zm-1.53 4.97L9 13.44l-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3c.3.3.77.3 1.06 0l7-7a.75.75 0 0 0-1.06-1.06zM23 17.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0zm-8.5-.5a.5.5 0 0 0 0 1h4.8l-1.65 1.65a.5.5 0 0 0 .7.7l2.5-2.5a.5.5 0 0 0 0-.7l-2.5-2.5a.5.5 0 0 0-.7.7L19.29 17H14.5z"
}));
});
CheckboxArrowRight.displayName = 'CheckboxArrowRight';
export var CheckboxArrowRightDimensions = {
height: 24,
width: 24
};