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) 1.05 kB
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgMeasureAngle = 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: "M3.5 2H2v20h20v-1.5H3.5V2Z" }), jsx("path", { d: "m8.767 7.708 1.763 1.764-1.06 1.06L5.94 7l3.53-3.53 1.06 1.06-1.68 1.68c.39.012.82.04 1.274.088 1.722.186 3.942.708 5.406 2.172 1.464 1.464 1.986 3.684 2.172 5.406.049.453.075.884.088 1.273l1.68-1.68 1.06 1.061L17 18.06l-3.53-3.53 1.06-1.06 1.762 1.761c-.011-.364-.036-.77-.082-1.194-.176-1.641-.654-3.42-1.74-4.507-1.087-1.086-2.866-1.564-4.507-1.74-.425-.046-.83-.07-1.196-.082Z" })] })), 'SvgMeasureAngle'); const Memo = memo(SvgMeasureAngle); export { Memo as default };