@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 725 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialArrowRightFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "ArrowRightFilled",
short_name: "ArrowRight",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11.7 15.3q-.475.475-1.087.212Q10 15.25 10 14.575v-5.15q0-.675.613-.937.612-.263 1.087.212l2.6 2.6q.15.15.225.325.075.175.075.375t-.075.375q-.075.175-.225.325Z"
}));
});
IconMaterialArrowRightFilled.displayName = 'AmauiIconMaterialArrowRightFilled';
export default IconMaterialArrowRightFilled;