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