@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) • 1.42 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgError = 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: "M12 21.4a1.71 1.71 0 0 1-.675-.138 2.1 2.1 0 0 1-.6-.387l-7.6-7.6a2.12 2.12 0 0 1-.388-.6A1.721 1.721 0 0 1 2.6 12a1.817 1.817 0 0 1 .525-1.275l7.6-7.6c.183-.183.383-.317.6-.4.217-.083.442-.125.675-.125.233 0 .463.042.688.125.225.083.42.217.587.4l7.6 7.6c.183.167.317.362.4.587.083.225.125.455.125.688 0 .233-.042.458-.125.675a1.722 1.722 0 0 1-.4.6l-7.6 7.6a1.755 1.755 0 0 1-.587.387A1.805 1.805 0 0 1 12 21.4Zm.225-1.6 7.575-7.575c.05-.05.075-.125.075-.225s-.025-.175-.075-.225L12.225 4.2c-.05-.05-.125-.075-.225-.075s-.175.025-.225.075L4.2 11.775c-.05.05-.075.125-.075.225s.025.175.075.225l7.575 7.575c.05.05.125.075.225.075s.175-.025.225-.075Zm-.975-6.725h1.5v-5.6h-1.5v5.6ZM12 15.7c.233 0 .425-.08.575-.238a.789.789 0 0 0 .225-.562.823.823 0 0 0-.225-.588.758.758 0 0 0-.575-.237.758.758 0 0 0-.575.237.823.823 0 0 0-.225.588c0 .217.075.404.225.562.15.159.342.238.575.238Z" }) })), 'SvgError');
const Memo = memo(SvgError);
export { Memo as default };