@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 754 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialNoteFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "NoteFilled",
short_name: "Note",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M6 22q-.825 0-1.412-.587Q4 20.825 4 20V4q0-.825.588-1.413Q5.175 2 6 2h7.175q.4 0 .763.15.362.15.637.425l4.85 4.85q.275.275.425.637.15.363.15.763V20q0 .825-.587 1.413Q18.825 22 18 22Zm7-14q0 .425.288.712Q13.575 9 14 9h4l-5-5Z"
}));
});
IconMaterialNoteFilled.displayName = 'OnesyIconMaterialNoteFilled';
export default IconMaterialNoteFilled;