@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) • 761 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 SvgPlanes = 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: "M21 3v12L7 23V11l14-8Zm-1.5 2.585v8.545l-11 6.285v-8.544l11-6.286Z" }), jsx("path", { d: "M17 .46v2.827l-1.5.866V2.85l-11 6.21v8.5l.5-.284v2.042L3 20.46v-12l14-8Z" })] })), 'SvgPlanes');
const Memo = memo(SvgPlanes);
export { Memo as default };