UNPKG

@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) 951 B
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgBox = 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: "M12 21.988 2 17.655V6.393L12 1.95l10 4.444v11.262l-10 4.333Zm8.462-5.343V8.077l-7.693 3.419v8.482l7.693-3.333Zm-9.231 3.333v-8.482l-7.693-3.42v8.569l7.693 3.333ZM4.663 6.893 12 10.153l7.337-3.26L12 3.633l-7.337 3.26Z" }), jsx("path", { d: "m12.016 22-.789-.342V11.496l-9.23-4.092V6.402l.763-.343 9.236 4.096 9.248-4.1.753.338v1.01l-9.232 4.093v10.167l-.749.337Z" })] })), 'SvgBox'); const Memo = memo(SvgBox); export { Memo as default };