@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) • 694 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgValid = 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" }) }), jsx("g", { mask: "url(#a)", children: jsx("path", { d: "M7.2 20.5v-12l6.65-6.6 1.35 1.375L14 8.5h8.5v3.775L19.025 20.5H7.2ZM8.7 19H18l3-7v-2h-8.9l1.25-5.475L8.7 9.15V19ZM7.2 8.5V10H4v9h3.2v1.5H2.5v-12h4.7Z" }) })), 'SvgValid');
const Memo = memo(SvgValid);
export { Memo as default };