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) 759 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgMeasureWidth = 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: "M2.25 4.25h1.5v15.5h-1.5V4.25ZM5.35 12 9 8.35l1.05 1.05-1.825 1.85h7.55L13.95 9.4 15 8.35 18.65 12 15 15.65l-1.05-1.05 1.825-1.85h-7.55l1.825 1.85L9 15.65 5.35 12Zm14.9-7.75h1.5v15.5h-1.5V4.25Z" }) })), 'SvgMeasureWidth'); const Memo = memo(SvgMeasureWidth); export { Memo as default };