@nexusui/icons
Version:
This package contains custom icons designed specifically for NexusUI applications. These icons work in exactly the same way as the icons from [MUI](https://mui.com/material-ui/api/svg-icon/).
12 lines (9 loc) • 824 B
JavaScript
import { jsx, jsxs } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgFace = createSvgIcon(React.createElement(React.Fragment, {}, jsx("mask", { id: "a", width: 24, height: 24, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
maskType: 'alpha',
}, children: jsx("path", { d: "M0 0h24v24H0z" }) }), jsxs("g", { fillRule: "evenodd", clipRule: "evenodd", mask: "url(#a)", children: [jsx("path", { d: "M15 2.992 6.98 6.2l7.27 2.908v7.8l7.5-3V5.692L15 2.992Zm0 4.8L11.02 6.2 15 4.608 18.98 6.2 15 7.792Zm5.25-.484v5.584l-4.5 1.8V9.108l4.5-1.8Z" }), jsx("path", { d: "M10.8 11.316v7.768l-7-2.8V8.516l7 2.8Zm1.5-1.016v11l-10-4v-11l10 4Z" })] })), 'SvgFace');
const Memo = memo(SvgFace);
export { Memo as default };