@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 597 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialExclamationFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "ExclamationFilled",
short_name: "Exclamation",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11 14V5h2v9Zm0 5v-2h2v2Z"
}));
});
IconMaterialExclamationFilled.displayName = 'AmauiIconMaterialExclamationFilled';
export default IconMaterialExclamationFilled;