@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 588 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialExpandContent = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "ExpandContent",
short_name: "ExpandContent",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M5 19v-6h2v4h4v2Zm12-8V7h-4V5h6v6Z"
}));
});
IconMaterialExpandContent.displayName = 'AmauiIconMaterialExpandContent';
export default IconMaterialExpandContent;