@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 808 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialChevronRightFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "ChevronRightFilled",
short_name: "ChevronRight",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8.7 17.3q-.275-.275-.275-.7 0-.425.275-.7l3.9-3.9-3.9-3.9q-.275-.275-.275-.7 0-.425.275-.7.275-.275.7-.275.425 0 .7.275l4.6 4.6q.15.15.213.325.062.175.062.375t-.062.375q-.063.175-.213.325l-4.6 4.6q-.275.275-.7.275-.425 0-.7-.275Z"
}));
});
IconMaterialChevronRightFilled.displayName = 'AmauiIconMaterialChevronRightFilled';
export default IconMaterialChevronRightFilled;