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) 764 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgMeasureHeight = 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: "M4.25 21.75v-1.5h15.5v1.5H4.25Zm7.75-3.1L8.35 15l1.05-1.05 1.85 1.825v-7.55L9.4 10.05 8.35 9 12 5.35 15.65 9l-1.05 1.05-1.85-1.825v7.55l1.85-1.825L15.65 15 12 18.65ZM4.25 3.75v-1.5h15.5v1.5H4.25Z" }) })), 'SvgMeasureHeight'); const Memo = memo(SvgMeasureHeight); export { Memo as default };