chore: reduce code for icons

This commit is contained in:
DarkSky 2022-08-12 01:42:17 +08:00
parent 40b617c429
commit d3b4906da9
135 changed files with 268 additions and 668 deletions

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AddViewIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AddViewIcon: FC<AddViewIconProps> = ({ color, style, ...props}) => {
export const AddViewIcon = ({ color, style, ...props}: AddViewIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AddIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AddIcon: FC<AddIconProps> = ({ color, style, ...props}) => {
export const AddIcon = ({ color, style, ...props}: AddIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignCenterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignCenterIcon: FC<AlignCenterIconProps> = ({ color, style, ...props}) => {
export const AlignCenterIcon = ({ color, style, ...props}: AlignCenterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignJustifyIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignJustifyIcon: FC<AlignJustifyIconProps> = ({ color, style, ...props}) => {
export const AlignJustifyIcon = ({ color, style, ...props}: AlignJustifyIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignLeftIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignLeftIcon: FC<AlignLeftIconProps> = ({ color, style, ...props}) => {
export const AlignLeftIcon = ({ color, style, ...props}: AlignLeftIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignRightIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignRightIcon: FC<AlignRightIconProps> = ({ color, style, ...props}) => {
export const AlignRightIcon = ({ color, style, ...props}: AlignRightIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ArrowBigIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ArrowBigIcon: FC<ArrowBigIconProps> = ({ color, style, ...props}) => {
export const ArrowBigIcon = ({ color, style, ...props}: ArrowBigIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ArrowDropDownIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ArrowDropDownIcon: FC<ArrowDropDownIconProps> = ({ color, style, ...props}) => {
export const ArrowDropDownIcon = ({ color, style, ...props}: ArrowDropDownIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ArrowRightIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ArrowRightIcon: FC<ArrowRightIconProps> = ({ color, style, ...props}) => {
export const ArrowRightIcon = ({ color, style, ...props}: ArrowRightIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ArrowIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ArrowIcon: FC<ArrowIconProps> = ({ color, style, ...props}) => {
export const ArrowIcon = ({ color, style, ...props}: ArrowIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AtIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AtIcon: FC<AtIconProps> = ({ color, style, ...props}) => {
export const AtIcon = ({ color, style, ...props}: AtIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BacklinksIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BacklinksIcon: FC<BacklinksIconProps> = ({ color, style, ...props}) => {
export const BacklinksIcon = ({ color, style, ...props}: BacklinksIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BackwardUndoIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BackwardUndoIcon: FC<BackwardUndoIconProps> = ({ color, style, ...props}) => {
export const BackwardUndoIcon = ({ color, style, ...props}: BackwardUndoIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BlocksIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BlocksIcon: FC<BlocksIconProps> = ({ color, style, ...props}) => {
export const BlocksIcon = ({ color, style, ...props}: BlocksIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BoardViewIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BoardViewIcon: FC<BoardViewIconProps> = ({ color, style, ...props}) => {
export const BoardViewIcon = ({ color, style, ...props}: BoardViewIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,16 +1,13 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BorderColorDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
color0?: string
primaryColor?: string
}
export const BorderColorDuotoneIcon: FC<BorderColorDuotoneIconProps> = ({ color0, primaryColor, style, ...props}) => {
export const BorderColorDuotoneIcon = ({ color0, primaryColor, style, ...props}: BorderColorDuotoneIconProps) => {
const propsStyles = {"--color-0": color0 || primaryColor};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BorderColorNoneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BorderColorNoneIcon: FC<BorderColorNoneIconProps> = ({ color, style, ...props}) => {
export const BorderColorNoneIcon = ({ color, style, ...props}: BorderColorNoneIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BrushIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BrushIcon: FC<BrushIconProps> = ({ color, style, ...props}) => {
export const BrushIcon = ({ color, style, ...props}: BrushIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BulletIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BulletIcon: FC<BulletIconProps> = ({ color, style, ...props}) => {
export const BulletIcon = ({ color, style, ...props}: BulletIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BulletedList_1IconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BulletedList_1Icon: FC<BulletedList_1IconProps> = ({ color, style, ...props}) => {
export const BulletedList_1Icon = ({ color, style, ...props}: BulletedList_1IconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BulletedList_2IconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BulletedList_2Icon: FC<BulletedList_2IconProps> = ({ color, style, ...props}) => {
export const BulletedList_2Icon = ({ color, style, ...props}: BulletedList_2IconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BulletedList_3IconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BulletedList_3Icon: FC<BulletedList_3IconProps> = ({ color, style, ...props}) => {
export const BulletedList_3Icon = ({ color, style, ...props}: BulletedList_3IconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BulletedList_4IconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BulletedList_4Icon: FC<BulletedList_4IconProps> = ({ color, style, ...props}) => {
export const BulletedList_4Icon = ({ color, style, ...props}: BulletedList_4IconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CalloutIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CalloutIcon: FC<CalloutIconProps> = ({ color, style, ...props}) => {
export const CalloutIcon = ({ color, style, ...props}: CalloutIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CardIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CardIcon: FC<CardIconProps> = ({ color, style, ...props}) => {
export const CardIcon = ({ color, style, ...props}: CardIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CheckBoxCheckIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CheckBoxCheckIcon: FC<CheckBoxCheckIconProps> = ({ color, style, ...props}) => {
export const CheckBoxCheckIcon = ({ color, style, ...props}: CheckBoxCheckIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CheckBoxUncheckIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CheckBoxUncheckIcon: FC<CheckBoxUncheckIconProps> = ({ color, style, ...props}) => {
export const CheckBoxUncheckIcon = ({ color, style, ...props}: CheckBoxUncheckIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CodeBlockIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CodeBlockIcon: FC<CodeBlockIconProps> = ({ color, style, ...props}) => {
export const CodeBlockIcon = ({ color, style, ...props}: CodeBlockIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CodeIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CodeIcon: FC<CodeIconProps> = ({ color, style, ...props}) => {
export const CodeIcon = ({ color, style, ...props}: CodeIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CollaboratorIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CollaboratorIcon: FC<CollaboratorIconProps> = ({ color, style, ...props}) => {
export const CollaboratorIcon = ({ color, style, ...props}: CollaboratorIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface CommentIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const CommentIcon: FC<CommentIconProps> = ({ color, style, ...props}) => {
export const CommentIcon = ({ color, style, ...props}: CommentIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20.8 9V4.1a.9.9 0 0 0-.9-.9H15v1.6h3.2L4.8 18.2V15H3.2v4.9a.9.9 0 0 0 .9.9H9v-1.6H6.063L19.2 6.063V9h1.6Z" clip-rule="evenodd"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20.8 9V4.1a.9.9 0 0 0-.9-.9H15v1.6h3.2L4 19l1.131 1.131L19.2 6.063V9h1.6Z" clip-rule="evenodd"/></svg>

Before

Width:  |  Height:  |  Size: 224 B

After

Width:  |  Height:  |  Size: 192 B

View File

@ -1,21 +1,18 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ConectorArrowIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ConectorArrowIcon: FC<ConectorArrowIconProps> = ({ color, style, ...props}) => {
export const ConectorArrowIcon = ({ color, style, ...props}: ConectorArrowIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
return (
<SvgIcon style={styles} {...props}>
<path fillRule="evenodd" d="M20.8 9V4.1a.9.9 0 0 0-.9-.9H15v1.6h3.2L4.8 18.2V15H3.2v4.9a.9.9 0 0 0 .9.9H9v-1.6H6.063L19.2 6.063V9h1.6Z" clipRule="evenodd" />
<path fillRule="evenodd" d="M20.8 9V4.1a.9.9 0 0 0-.9-.9H15v1.6h3.2L4 19l1.131 1.131L19.2 6.063V9h1.6Z" clipRule="evenodd" />
</SvgIcon>
)
};

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ConectorLineIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ConectorLineIcon: FC<ConectorLineIconProps> = ({ color, style, ...props}) => {
export const ConectorLineIcon = ({ color, style, ...props}: ConectorLineIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ConnectorIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ConnectorIcon: FC<ConnectorIconProps> = ({ color, style, ...props}) => {
export const ConnectorIcon = ({ color, style, ...props}: ConnectorIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DashLineIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DashLineIcon: FC<DashLineIconProps> = ({ color, style, ...props}) => {
export const DashLineIcon = ({ color, style, ...props}: DashLineIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DateIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DateIcon: FC<DateIconProps> = ({ color, style, ...props}) => {
export const DateIcon = ({ color, style, ...props}: DateIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DeleteCashBinIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DeleteCashBinIcon: FC<DeleteCashBinIconProps> = ({ color, style, ...props}) => {
export const DeleteCashBinIcon = ({ color, style, ...props}: DeleteCashBinIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DeleteSmallTagIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DeleteSmallTagIcon: FC<DeleteSmallTagIconProps> = ({ color, style, ...props}) => {
export const DeleteSmallTagIcon = ({ color, style, ...props}: DeleteSmallTagIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DividerIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DividerIcon: FC<DividerIconProps> = ({ color, style, ...props}) => {
export const DividerIcon = ({ color, style, ...props}: DividerIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DocViewIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DocViewIcon: FC<DocViewIconProps> = ({ color, style, ...props}) => {
export const DocViewIcon = ({ color, style, ...props}: DocViewIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DoneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DoneIcon: FC<DoneIconProps> = ({ color, style, ...props}) => {
export const DoneIcon = ({ color, style, ...props}: DoneIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DuplicateIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DuplicateIcon: FC<DuplicateIconProps> = ({ color, style, ...props}) => {
export const DuplicateIcon = ({ color, style, ...props}: DuplicateIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface EditIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const EditIcon: FC<EditIconProps> = ({ color, style, ...props}) => {
export const EditIcon = ({ color, style, ...props}: EditIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface EllipseIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const EllipseIcon: FC<EllipseIconProps> = ({ color, style, ...props}) => {
export const EllipseIcon = ({ color, style, ...props}: EllipseIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface EmailIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const EmailIcon: FC<EmailIconProps> = ({ color, style, ...props}) => {
export const EmailIcon = ({ color, style, ...props}: EmailIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface EmbedIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const EmbedIcon: FC<EmbedIconProps> = ({ color, style, ...props}) => {
export const EmbedIcon = ({ color, style, ...props}: EmbedIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface EraserIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const EraserIcon: FC<EraserIconProps> = ({ color, style, ...props}) => {
export const EraserIcon = ({ color, style, ...props}: EraserIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FigmaIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FigmaIcon: FC<FigmaIconProps> = ({ color, style, ...props}) => {
export const FigmaIcon = ({ color, style, ...props}: FigmaIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FileIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FileIcon: FC<FileIconProps> = ({ color, style, ...props}) => {
export const FileIcon = ({ color, style, ...props}: FileIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FilterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FilterIcon: FC<FilterIconProps> = ({ color, style, ...props}) => {
export const FilterIcon = ({ color, style, ...props}: FilterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatBackgroundIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatBackgroundIcon: FC<FormatBackgroundIconProps> = ({ color, style, ...props}) => {
export const FormatBackgroundIcon = ({ color, style, ...props}: FormatBackgroundIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatBoldEmphasisIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatBoldEmphasisIcon: FC<FormatBoldEmphasisIconProps> = ({ color, style, ...props}) => {
export const FormatBoldEmphasisIcon = ({ color, style, ...props}: FormatBoldEmphasisIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatClearIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatClearIcon: FC<FormatClearIconProps> = ({ color, style, ...props}) => {
export const FormatClearIcon = ({ color, style, ...props}: FormatClearIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatColorTextIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatColorTextIcon: FC<FormatColorTextIconProps> = ({ color, style, ...props}) => {
export const FormatColorTextIcon = ({ color, style, ...props}: FormatColorTextIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatItalicIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatItalicIcon: FC<FormatItalicIconProps> = ({ color, style, ...props}) => {
export const FormatItalicIcon = ({ color, style, ...props}: FormatItalicIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FormatStrikethroughIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FormatStrikethroughIcon: FC<FormatStrikethroughIconProps> = ({ color, style, ...props}) => {
export const FormatStrikethroughIcon = ({ color, style, ...props}: FormatStrikethroughIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ForwardRedoIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ForwardRedoIcon: FC<ForwardRedoIconProps> = ({ color, style, ...props}) => {
export const ForwardRedoIcon = ({ color, style, ...props}: ForwardRedoIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FrameIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FrameIcon: FC<FrameIconProps> = ({ color, style, ...props}) => {
export const FrameIcon = ({ color, style, ...props}: FrameIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface FullScreenIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const FullScreenIcon: FC<FullScreenIconProps> = ({ color, style, ...props}) => {
export const FullScreenIcon = ({ color, style, ...props}: FullScreenIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface GroupByIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const GroupByIcon: FC<GroupByIconProps> = ({ color, style, ...props}) => {
export const GroupByIcon = ({ color, style, ...props}: GroupByIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface GroupIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const GroupIcon: FC<GroupIconProps> = ({ color, style, ...props}) => {
export const GroupIcon = ({ color, style, ...props}: GroupIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HandToolIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HandToolIcon: FC<HandToolIconProps> = ({ color, style, ...props}) => {
export const HandToolIcon = ({ color, style, ...props}: HandToolIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HandleChildIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HandleChildIcon: FC<HandleChildIconProps> = ({ color, style, ...props}) => {
export const HandleChildIcon = ({ color, style, ...props}: HandleChildIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HandleParentIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HandleParentIcon: FC<HandleParentIconProps> = ({ color, style, ...props}) => {
export const HandleParentIcon = ({ color, style, ...props}: HandleParentIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HeadingOneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HeadingOneIcon: FC<HeadingOneIconProps> = ({ color, style, ...props}) => {
export const HeadingOneIcon = ({ color, style, ...props}: HeadingOneIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HeadingThreeIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HeadingThreeIcon: FC<HeadingThreeIconProps> = ({ color, style, ...props}) => {
export const HeadingThreeIcon = ({ color, style, ...props}: HeadingThreeIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HeadingTwoIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HeadingTwoIcon: FC<HeadingTwoIconProps> = ({ color, style, ...props}) => {
export const HeadingTwoIcon = ({ color, style, ...props}: HeadingTwoIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HelpCenterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HelpCenterIcon: FC<HelpCenterIconProps> = ({ color, style, ...props}) => {
export const HelpCenterIcon = ({ color, style, ...props}: HelpCenterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,9 +1,6 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HighlighterDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
color0?: string
@ -12,7 +9,7 @@ export interface HighlighterDuotoneIconProps extends Omit<SvgIconProps, 'color'>
secondaryColor?: string
}
export const HighlighterDuotoneIcon: FC<HighlighterDuotoneIconProps> = ({ color0, primaryColor, color1, secondaryColor, style, ...props}) => {
export const HighlighterDuotoneIcon = ({ color0, primaryColor, color1, secondaryColor, style, ...props}: HighlighterDuotoneIconProps) => {
const propsStyles = {"--color-0": color0 || primaryColor, "--color-1": color1 || secondaryColor};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface HoverFrameIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HoverFrameIcon: FC<HoverFrameIconProps> = ({ color, style, ...props}) => {
export const HoverFrameIcon = ({ color, style, ...props}: HoverFrameIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ImageIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ImageIcon: FC<ImageIconProps> = ({ color, style, ...props}) => {
export const ImageIcon = ({ color, style, ...props}: ImageIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,4 +1,4 @@
export const timestamp = 1659423582387;
export const timestamp = 1660239514133;
export * from './image/image';
export * from './format-clear/format-clear';
export * from './backward-undo/backward-undo';

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface InformationIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const InformationIcon: FC<InformationIconProps> = ({ color, style, ...props}) => {
export const InformationIcon = ({ color, style, ...props}: InformationIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface KanBanIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const KanBanIcon: FC<KanBanIconProps> = ({ color, style, ...props}) => {
export const KanBanIcon = ({ color, style, ...props}: KanBanIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,9 +1,6 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LaserPenDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
color0?: string
@ -12,7 +9,7 @@ export interface LaserPenDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
secondaryColor?: string
}
export const LaserPenDuotoneIcon: FC<LaserPenDuotoneIconProps> = ({ color0, primaryColor, color1, secondaryColor, style, ...props}) => {
export const LaserPenDuotoneIcon = ({ color0, primaryColor, color1, secondaryColor, style, ...props}: LaserPenDuotoneIconProps) => {
const propsStyles = {"--color-0": color0 || primaryColor, "--color-1": color1 || secondaryColor};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LayoutIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LayoutIcon: FC<LayoutIconProps> = ({ color, style, ...props}) => {
export const LayoutIcon = ({ color, style, ...props}: LayoutIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LineNoneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LineNoneIcon: FC<LineNoneIconProps> = ({ color, style, ...props}) => {
export const LineNoneIcon = ({ color, style, ...props}: LineNoneIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LinkIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LinkIcon: FC<LinkIconProps> = ({ color, style, ...props}) => {
export const LinkIcon = ({ color, style, ...props}: LinkIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LocationIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LocationIcon: FC<LocationIconProps> = ({ color, style, ...props}) => {
export const LocationIcon = ({ color, style, ...props}: LocationIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LockIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LockIcon: FC<LockIconProps> = ({ color, style, ...props}) => {
export const LockIcon = ({ color, style, ...props}: LockIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LogOutIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LogOutIcon: FC<LogOutIconProps> = ({ color, style, ...props}) => {
export const LogOutIcon = ({ color, style, ...props}: LogOutIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface LogoIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const LogoIcon: FC<LogoIconProps> = ({ color, style, ...props}) => {
export const LogoIcon = ({ color, style, ...props}: LogoIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface MoreTagsAnSubblocksIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const MoreTagsAnSubblocksIcon: FC<MoreTagsAnSubblocksIconProps> = ({ color, style, ...props}) => {
export const MoreTagsAnSubblocksIcon = ({ color, style, ...props}: MoreTagsAnSubblocksIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface MoreIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const MoreIcon: FC<MoreIconProps> = ({ color, style, ...props}) => {
export const MoreIcon = ({ color, style, ...props}: MoreIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface MoveToIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const MoveToIcon: FC<MoveToIconProps> = ({ color, style, ...props}) => {
export const MoveToIcon = ({ color, style, ...props}: MoveToIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface MultiSelectIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const MultiSelectIcon: FC<MultiSelectIconProps> = ({ color, style, ...props}) => {
export const MultiSelectIcon = ({ color, style, ...props}: MultiSelectIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface NumberIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const NumberIcon: FC<NumberIconProps> = ({ color, style, ...props}) => {
export const NumberIcon = ({ color, style, ...props}: NumberIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PageDuallinkIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PageDuallinkIcon: FC<PageDuallinkIconProps> = ({ color, style, ...props}) => {
export const PageDuallinkIcon = ({ color, style, ...props}: PageDuallinkIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PageInPageTreeIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PageInPageTreeIcon: FC<PageInPageTreeIconProps> = ({ color, style, ...props}) => {
export const PageInPageTreeIcon = ({ color, style, ...props}: PageInPageTreeIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PagesIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PagesIcon: FC<PagesIconProps> = ({ color, style, ...props}) => {
export const PagesIcon = ({ color, style, ...props}: PagesIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PenIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PenIcon: FC<PenIconProps> = ({ color, style, ...props}) => {
export const PenIcon = ({ color, style, ...props}: PenIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,9 +1,6 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PencilDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
color0?: string
@ -12,7 +9,7 @@ export interface PencilDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
secondaryColor?: string
}
export const PencilDuotoneIcon: FC<PencilDuotoneIconProps> = ({ color0, primaryColor, color1, secondaryColor, style, ...props}) => {
export const PencilDuotoneIcon = ({ color0, primaryColor, color1, secondaryColor, style, ...props}: PencilDuotoneIconProps) => {
const propsStyles = {"--color-0": color0 || primaryColor, "--color-1": color1 || secondaryColor};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PhoneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PhoneIcon: FC<PhoneIconProps> = ({ color, style, ...props}) => {
export const PhoneIcon = ({ color, style, ...props}: PhoneIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PinIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PinIcon: FC<PinIconProps> = ({ color, style, ...props}) => {
export const PinIcon = ({ color, style, ...props}: PinIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PointLineIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PointLineIcon: FC<PointLineIconProps> = ({ color, style, ...props}) => {
export const PointLineIcon = ({ color, style, ...props}: PointLineIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface PolygonIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const PolygonIcon: FC<PolygonIconProps> = ({ color, style, ...props}) => {
export const PolygonIcon = ({ color, style, ...props}: PolygonIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface QuoteIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const QuoteIcon: FC<QuoteIconProps> = ({ color, style, ...props}) => {
export const QuoteIcon = ({ color, style, ...props}: QuoteIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface ReactionIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ReactionIcon: FC<ReactionIconProps> = ({ color, style, ...props}) => {
export const ReactionIcon = ({ color, style, ...props}: ReactionIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

View File

@ -1,15 +1,12 @@
import { FC } from 'react';
// eslint-disable-next-line no-restricted-imports
import { SvgIcon } from '@mui/material';
// eslint-disable-next-line no-restricted-imports
import type { SvgIconProps } from '@mui/material';
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface Rectangle_93IconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const Rectangle_93Icon: FC<Rectangle_93IconProps> = ({ color, style, ...props}) => {
export const Rectangle_93Icon = ({ color, style, ...props}: Rectangle_93IconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Some files were not shown because too many files have changed in this diff Show More