@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.31 kB
JavaScript
import { jsx, jsxs } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCylinder = 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: "M6.68 4.66C5.63 5.3 5.5 5.89 5.5 6V18.005c.004.028.015.093.046.183.058.173.192.458.507.77.62.61 2.173 1.542 5.946 1.542 3.774 0 5.328-.931 5.946-1.542.316-.312.45-.597.508-.77a1.062 1.062 0 0 0 .047-.184V6c0-.11-.132-.7-1.182-1.34C16.313 4.045 14.603 3.5 12 3.5c-2.603 0-4.313.546-5.318 1.16ZM4 6c0-1.657 2.4-4 8-4s8 2.343 8 4v12.05S20 22 12 22s-8-3.95-8-3.95V6Z" }), jsx("path", { d: "M16.985 7.487C18.274 6.843 18.5 6.23 18.5 6c0-.23-.226-.843-1.515-1.487C15.787 3.913 14.026 3.5 12 3.5c-2.026 0-3.787.414-4.986 1.013C5.725 5.157 5.5 5.77 5.5 6c0 .23.225.843 1.513 1.487C8.212 8.087 9.973 8.5 12 8.5c2.027 0 3.788-.414 4.986-1.013ZM12 10c4.419 0 8-1.79 8-4s-3.581-4-8-4C7.581 2 4 3.79 4 6s3.582 4 8 4Z" })] })), 'SvgCylinder');
const Memo = memo(SvgCylinder);
export { Memo as default };