@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 702 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialArrowDropUp = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "ArrowDropUp",
short_name: "ArrowDropUp",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M9.425 14q-.675 0-.937-.613-.263-.612.212-1.087l2.6-2.6q.15-.15.325-.225Q11.8 9.4 12 9.4t.375.075q.175.075.325.225l2.6 2.6q.475.475.212 1.087-.262.613-.937.613Z"
}));
});
IconMaterialArrowDropUp.displayName = 'AmauiIconMaterialArrowDropUp';
export default IconMaterialArrowDropUp;