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) 2.01 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgEditGeo = 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: "M10.75 9.275 9.7 8.2l2.075-2.075h-4A2.58 2.58 0 0 1 7.15 7.15a2.58 2.58 0 0 1-1.025.625v8.45c.517.167.938.467 1.263.9.325.433.487.933.487 1.5 0 .683-.242 1.27-.725 1.762a2.392 2.392 0 0 1-1.775.738c-.683 0-1.27-.246-1.762-.738a2.403 2.403 0 0 1-.738-1.762c0-.567.167-1.067.5-1.5a2.58 2.58 0 0 1 1.25-.9v-8.45a2.579 2.579 0 0 1-1.25-.9 2.392 2.392 0 0 1-.5-1.5c0-.683.246-1.271.738-1.763a2.405 2.405 0 0 1 1.762-.737c.567 0 1.067.167 1.5.5.433.333.733.75.9 1.25h4L9.7 2.55l1.05-1.05 3.9 3.875-3.9 3.9Zm7.875-6.4c.683 0 1.271.246 1.763.737.491.492.737 1.08.737 1.763 0 .7-.246 1.292-.737 1.775a2.428 2.428 0 0 1-1.763.725c-.7 0-1.292-.242-1.775-.725-.483-.483-.725-1.075-.725-1.775 0-.683.242-1.271.725-1.763a2.394 2.394 0 0 1 1.775-.737Zm-13.25 16.75a.968.968 0 0 0 .713-.288.967.967 0 0 0 .287-.712.967.967 0 0 0-.287-.712.968.968 0 0 0-.713-.288.968.968 0 0 0-.713.288.967.967 0 0 0-.287.712c0 .283.096.52.287.712.192.192.43.288.713.288Zm0-13.25a.97.97 0 0 0 .713-.287.97.97 0 0 0 .287-.713.97.97 0 0 0-.287-.713.97.97 0 0 0-.713-.287.97.97 0 0 0-.713.287.97.97 0 0 0-.287.713.97.97 0 0 0 .287.713.97.97 0 0 0 .713.287Zm13.25 0c.283 0 .52-.096.712-.287a.968.968 0 0 0 .288-.713.968.968 0 0 0-.288-.713.967.967 0 0 0-.712-.287.967.967 0 0 0-.712.287.968.968 0 0 0-.288.713c0 .283.096.521.288.713a.967.967 0 0 0 .712.287Zm-3 6.05 1.1 1.05L12 18.2v1.425h1.4l4.75-4.75 1.05 1.05-5.15 5.2H10.5v-3.55l5.125-5.15Zm3.575 3.5-3.575-3.5 2.7-2.7 3.55 3.525-2.675 2.675Z" }) })), 'SvgEditGeo'); const Memo = memo(SvgEditGeo); export { Memo as default };