@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 765 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialBook = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "Book",
short_name: "Book",
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 2h12q.825 0 1.413.587Q20 3.175 20 4v16q0 .825-.587 1.413Q18.825 22 18 22Zm0-2h12V4h-2v6.125q0 .3-.25.437-.25.138-.5-.012L13.5 9.5l-1.75 1.05q-.25.15-.5.012-.25-.137-.25-.437V4H6v16Zm5-16h5ZM6 4h12Z"
}));
});
IconMaterialBook.displayName = 'AmauiIconMaterialBook';
export default IconMaterialBook;