@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/).
10 lines (7 loc) • 1.25 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgFileWithThreeCharacters = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M18 20.2H6V3.8h8.2L18 7.5v12.7Z" }), jsx("path", { stroke: "#000", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M18 7.5h-3.8V3.8" }), jsx("path", { d: "M21 10H3v8h18v-8Z" }), jsx("path", { d: "M5.942 15.841h-.554l1.602-4.363h.546l1.602 4.363h-.554L7.28 12.168h-.034l-1.304 3.673Zm.204-1.704H8.38v.468H6.146v-.468ZM18.979 11.478h.528v3.119c0 .278-.051.515-.153.71a1.042 1.042 0 0 1-.433.443c-.186.1-.405.151-.658.151-.239 0-.451-.043-.637-.13a1.051 1.051 0 0 1-.44-.375 1.027 1.027 0 0 1-.16-.577h.52c0 .123.031.231.092.323a.63.63 0 0 0 .256.213c.108.052.231.077.369.077a.74.74 0 0 0 .387-.096.606.606 0 0 0 .243-.28c.057-.126.086-.279.086-.459v-3.12ZM11.255 15.841l-1.193-4.363h.537l.912 3.554h.042l.93-3.554h.596l.929 3.554h.043l.912-3.554h.536l-1.193 4.363h-.545l-.963-3.477h-.034l-.963 3.477h-.546Z" })), 'SvgFileWithThreeCharacters');
const Memo = memo(SvgFileWithThreeCharacters);
export { Memo as default };