init: the first public commit for AFFiNE
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 20.4a8.4 8.4 0 1 0 0-16.8 8.4 8.4 0 0 0 0 16.8Zm0 1.6c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M11 13v4h2v-4h4v-2h-4V7h-2v4H7v2h4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 328 B |
21
libs/components/icons/src/auto-icons/add-view/add-view.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AddViewIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AddViewIcon: FC<AddViewIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M12 20.4a8.4 8.4 0 1 0 0-16.8 8.4 8.4 0 0 0 0 16.8Zm0 1.6c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z" clipRule="evenodd" /><path fillRule="evenodd" d="M11 13v4h2v-4h4v-2h-4V7h-2v4H7v2h4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M2 4h20v1.6H2V4ZM5 9h14v1.6H5V9ZM22 15H2v-1.6h20V15ZM19 20H5v-1.6h14V20Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 190 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AlignCenterIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AlignCenterIcon: FC<AlignCenterIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M2 4h20v1.6H2V4ZM5 9h14v1.6H5V9ZM22 15H2v-1.6h20V15ZM19 20H5v-1.6h14V20Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M2 4h20v1.6H2V4ZM2 9h20v1.6H2V9ZM22 15H2v-1.6h20V15ZM22 20H2v-1.6h20V20Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 190 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AlignJustifyIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AlignJustifyIcon: FC<AlignJustifyIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M2 4h20v1.6H2V4ZM2 9h20v1.6H2V9ZM22 15H2v-1.6h20V15ZM22 20H2v-1.6h20V20Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M2 4h20v1.6H2V4ZM2 9h14v1.6H2V9ZM22 15H2v-1.6h20V15ZM16 20H2v-1.6h14V20Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 190 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AlignLeftIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AlignLeftIcon: FC<AlignLeftIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M2 4h20v1.6H2V4ZM2 9h14v1.6H2V9ZM22 15H2v-1.6h20V15ZM16 20H2v-1.6h14V20Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M2 4h20v1.6H2V4ZM8 9h14v1.6H8V9ZM22 15H2v-1.6h20V15ZM22 20H8v-1.6h14V20Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 190 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AlignRightIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AlignRightIcon: FC<AlignRightIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M2 4h20v1.6H2V4ZM8 9h14v1.6H8V9ZM22 15H2v-1.6h20V15ZM22 20H8v-1.6h14V20Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m12 14 4-4H8l4 4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 135 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ArrowDropDownIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ArrowDropDownIcon: FC<ArrowDropDownIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m12 14 4-4H8l4 4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m14 12-4-4v8l4-4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 135 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ArrowRightIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ArrowRightIcon: FC<ArrowRightIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m14 12-4-4v8l4-4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/arrow/arrow.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9.6 11.4v8h4.8v-8h3.56L12 5.079 6.04 11.4H9.6Zm2-8.23a.554.554 0 0 1 .8 0l8.461 8.974c.311.33.066.856-.4.856H16v7.5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5V13H3.538c-.465 0-.71-.526-.4-.856l8.463-8.974Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 317 B |
21
libs/components/icons/src/auto-icons/arrow/arrow.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ArrowIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ArrowIcon: FC<ArrowIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M9.6 11.4v8h4.8v-8h3.56L12 5.079 6.04 11.4H9.6Zm2-8.23a.554.554 0 0 1 .8 0l8.461 8.974c.311.33.066.856-.4.856H16v7.5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5V13H3.538c-.465 0-.71-.526-.4-.856l8.463-8.974Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/at/at.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.287 3c-2.746 0-4.99.898-6.757 2.717C3.837 7.415 3 9.526 3 12.073c0 2.717.836 4.876 2.53 6.525C7.178 20.2 9.422 21 12.287 21c1.886 0 3.581-.388 5.11-1.14 1.575-.776 2.768-1.892 3.604-3.348h-1.671c-.669.97-1.552 1.723-2.65 2.28-1.241.607-2.721.922-4.392.922-2.34 0-4.178-.655-5.515-1.916-1.432-1.334-2.125-3.227-2.125-5.677 0-2.232.693-4.1 2.101-5.555 1.432-1.48 3.247-2.208 5.443-2.208 2.053 0 3.724.607 4.966 1.844 1.145 1.14 1.718 2.572 1.718 4.294 0 1.504-.43 2.814-1.289 3.93-.74.946-1.48 1.431-2.22 1.431-.454 0-.668-.218-.668-.606 0-.291.095-.777.286-1.48l1.695-6.332h-1.552l-.358 1.359c-.382-1.213-1.146-1.82-2.292-1.82-1.432 0-2.65.631-3.7 1.941-1.098 1.31-1.623 2.887-1.623 4.682 0 1.043.31 1.916.93 2.596.622.679 1.433 1.043 2.436 1.043 1.194 0 2.196-.558 3.008-1.65.095 1.068.644 1.601 1.647 1.601 1.241 0 2.387-.679 3.438-2.013 1.05-1.407 1.6-2.96 1.6-4.706 0-2.087-.67-3.809-2.006-5.192C16.75 3.752 14.769 3 12.287 3Zm.453 5.507c.477 0 .86.194 1.17.582.262.315.406.703.406 1.14 0 .146-.096.534-.24 1.165l-.524 1.989c-.191.63-.573 1.213-1.146 1.698-.573.485-1.17.728-1.767.728s-1.05-.194-1.36-.583c-.31-.388-.454-.897-.454-1.552 0-1.431.406-2.644 1.217-3.663.764-1.02 1.671-1.504 2.698-1.504Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
21
libs/components/icons/src/auto-icons/at/at.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface AtIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const AtIcon: FC<AtIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path d="M12.287 3c-2.746 0-4.99.898-6.757 2.717C3.837 7.415 3 9.526 3 12.073c0 2.717.836 4.876 2.53 6.525C7.178 20.2 9.422 21 12.287 21c1.886 0 3.581-.388 5.11-1.14 1.575-.776 2.768-1.892 3.604-3.348h-1.671c-.669.97-1.552 1.723-2.65 2.28-1.241.607-2.721.922-4.392.922-2.34 0-4.178-.655-5.515-1.916-1.432-1.334-2.125-3.227-2.125-5.677 0-2.232.693-4.1 2.101-5.555 1.432-1.48 3.247-2.208 5.443-2.208 2.053 0 3.724.607 4.966 1.844 1.145 1.14 1.718 2.572 1.718 4.294 0 1.504-.43 2.814-1.289 3.93-.74.946-1.48 1.431-2.22 1.431-.454 0-.668-.218-.668-.606 0-.291.095-.777.286-1.48l1.695-6.332h-1.552l-.358 1.359c-.382-1.213-1.146-1.82-2.292-1.82-1.432 0-2.65.631-3.7 1.941-1.098 1.31-1.623 2.887-1.623 4.682 0 1.043.31 1.916.93 2.596.622.679 1.433 1.043 2.436 1.043 1.194 0 2.196-.558 3.008-1.65.095 1.068.644 1.601 1.647 1.601 1.241 0 2.387-.679 3.438-2.013 1.05-1.407 1.6-2.96 1.6-4.706 0-2.087-.67-3.809-2.006-5.192C16.75 3.752 14.769 3 12.287 3Zm.453 5.507c.477 0 .86.194 1.17.582.262.315.406.703.406 1.14 0 .146-.096.534-.24 1.165l-.524 1.989c-.191.63-.573 1.213-1.146 1.698-.573.485-1.17.728-1.767.728s-1.05-.194-1.36-.583c-.31-.388-.454-.897-.454-1.552 0-1.431.406-2.644 1.217-3.663.764-1.02 1.671-1.504 2.698-1.504Z" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M3.2 3.2H10v1.6H4.8v14.4H10v1.6H3.2V3.2ZM14.2 3.2H21v1.6h-5.2v14.4H21v1.6h-6.8V3.2Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 201 B |
21
libs/components/icons/src/auto-icons/backlinks/backlinks.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BacklinksIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BacklinksIcon: FC<BacklinksIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M3.2 3.2H10v1.6H4.8v14.4H10v1.6H3.2V3.2ZM14.2 3.2H21v1.6h-5.2v14.4H21v1.6h-6.8V3.2Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11.121 5.707 9.707 4.293 2 12l7.707 7.707 1.414-1.414L5.828 13H15c2.074 0 3.274.842 3.988 1.834C19.74 15.878 20 17.16 20 18h2c0-1.16-.34-2.878-1.389-4.334C19.526 12.158 17.726 11 15 11H5.83l5.292-5.293Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 321 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BackwardUndoIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BackwardUndoIcon: FC<BackwardUndoIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M11.121 5.707 9.707 4.293 2 12l7.707 7.707 1.414-1.414L5.828 13H15c2.074 0 3.274.842 3.988 1.834C19.74 15.878 20 17.16 20 18h2c0-1.16-.34-2.878-1.389-4.334C19.526 12.158 17.726 11 15 11H5.83l5.292-5.293Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/blocks/blocks.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9.2 4.6H5a.4.4 0 0 0-.4.4v4.2c0 .22.18.4.4.4h4.2a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM5 3a2 2 0 0 0-2 2v4.2a2 2 0 0 0 2 2h4.2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5ZM19 4.6h-4.2a.4.4 0 0 0-.4.4v4.2c0 .22.18.4.4.4H19a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM14.8 3a2 2 0 0 0-2 2v4.2a2 2 0 0 0 2 2H19a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4.2ZM9.2 14.4H5a.4.4 0 0 0-.4.4V19c0 .221.18.4.4.4h4.2a.4.4 0 0 0 .4-.4v-4.2a.4.4 0 0 0-.4-.4ZM5 12.8a2 2 0 0 0-2 2V19a2 2 0 0 0 2 2h4.2a2 2 0 0 0 2-2v-4.2a2 2 0 0 0-2-2H5ZM19 14.4h-4.2a.4.4 0 0 0-.4.4V19c0 .221.18.4.4.4H19a.4.4 0 0 0 .4-.4v-4.2a.4.4 0 0 0-.4-.4Zm-4.2-1.6a2 2 0 0 0-2 2V19a2 2 0 0 0 2 2H19a2 2 0 0 0 2-2v-4.2a2 2 0 0 0-2-2h-4.2Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 783 B |
21
libs/components/icons/src/auto-icons/blocks/blocks.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BlocksIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BlocksIcon: FC<BlocksIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M9.2 4.6H5a.4.4 0 0 0-.4.4v4.2c0 .22.18.4.4.4h4.2a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM5 3a2 2 0 0 0-2 2v4.2a2 2 0 0 0 2 2h4.2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5ZM19 4.6h-4.2a.4.4 0 0 0-.4.4v4.2c0 .22.18.4.4.4H19a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM14.8 3a2 2 0 0 0-2 2v4.2a2 2 0 0 0 2 2H19a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4.2ZM9.2 14.4H5a.4.4 0 0 0-.4.4V19c0 .221.18.4.4.4h4.2a.4.4 0 0 0 .4-.4v-4.2a.4.4 0 0 0-.4-.4ZM5 12.8a2 2 0 0 0-2 2V19a2 2 0 0 0 2 2h4.2a2 2 0 0 0 2-2v-4.2a2 2 0 0 0-2-2H5ZM19 14.4h-4.2a.4.4 0 0 0-.4.4V19c0 .221.18.4.4.4H19a.4.4 0 0 0 .4-.4v-4.2a.4.4 0 0 0-.4-.4Zm-4.2-1.6a2 2 0 0 0-2 2V19a2 2 0 0 0 2 2H19a2 2 0 0 0 2-2v-4.2a2 2 0 0 0-2-2h-4.2Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 17.4a5.4 5.4 0 1 0 0-10.8 5.4 5.4 0 0 0 0 10.8Zm7-5.4a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M18.565 8a.8.8 0 0 1 .8-.8c.797 0 1.511.07 2.07.24.5.15 1.172.477 1.334 1.202v.004c.089.405-.026.776-.186 1.065a3.165 3.165 0 0 1-.652.782c-.52.471-1.265.947-2.15 1.407-1.783.927-4.28 1.869-7.077 2.62-2.796.752-5.409 1.184-7.381 1.266-.98.04-1.848-.003-2.516-.162-.333-.079-.662-.196-.937-.38-.282-.19-.547-.48-.639-.892v-.002c-.138-.63.202-1.173.518-1.532.343-.39.836-.768 1.413-1.129a.8.8 0 0 1 .848 1.357c-.515.322-.862.605-1.06.83a1.524 1.524 0 0 0-.078.096c.07.03.169.064.304.095.461.11 1.163.158 2.08.12 1.822-.075 4.314-.481 7.033-1.212 2.718-.73 5.1-1.635 6.753-2.494.832-.433 1.441-.835 1.814-1.173.127-.115.213-.21.268-.284a1.67 1.67 0 0 0-.153-.053c-.342-.104-.878-.171-1.606-.171a.8.8 0 0 1-.8-.8Zm2.692 1.097-.004-.004a.026.026 0 0 1 .004.004Zm-18.46 5 .001-.002v.002Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BoardViewIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BoardViewIcon: FC<BoardViewIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M12 17.4a5.4 5.4 0 1 0 0-10.8 5.4 5.4 0 0 0 0 10.8Zm7-5.4a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z" clipRule="evenodd" /><path fillRule="evenodd" d="M18.565 8a.8.8 0 0 1 .8-.8c.797 0 1.511.07 2.07.24.5.15 1.172.477 1.334 1.202v.004c.089.405-.026.776-.186 1.065a3.165 3.165 0 0 1-.652.782c-.52.471-1.265.947-2.15 1.407-1.783.927-4.28 1.869-7.077 2.62-2.796.752-5.409 1.184-7.381 1.266-.98.04-1.848-.003-2.516-.162-.333-.079-.662-.196-.937-.38-.282-.19-.547-.48-.639-.892v-.002c-.138-.63.202-1.173.518-1.532.343-.39.836-.768 1.413-1.129a.8.8 0 0 1 .848 1.357c-.515.322-.862.605-1.06.83a1.524 1.524 0 0 0-.078.096c.07.03.169.064.304.095.461.11 1.163.158 2.08.12 1.822-.075 4.314-.481 7.033-1.212 2.718-.73 5.1-1.635 6.753-2.494.832-.433 1.441-.835 1.814-1.173.127-.115.213-.21.268-.284a1.67 1.67 0 0 0-.153-.053c-.342-.104-.878-.171-1.606-.171a.8.8 0 0 1-.8-.8Zm2.692 1.097-.004-.004a.026.026 0 0 1 .004.004Zm-18.46 5 .001-.002v.002Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#3A4C5C" fill-rule="evenodd" d="M15.857 5.571H8.143A2.571 2.571 0 0 0 5.57 8.143v7.714a2.571 2.571 0 0 0 2.572 2.572h7.714a2.572 2.572 0 0 0 2.572-2.572V8.143a2.571 2.571 0 0 0-2.572-2.572ZM8.143 3A5.143 5.143 0 0 0 3 8.143v7.714A5.143 5.143 0 0 0 8.143 21h7.714A5.143 5.143 0 0 0 21 15.857V8.143A5.143 5.143 0 0 0 15.857 3H8.143Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 443 B |
@@ -0,0 +1,22 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BorderColorDuotoneIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color0?: string
|
||||
primaryColor?: string
|
||||
}
|
||||
|
||||
export const BorderColorDuotoneIcon: FC<BorderColorDuotoneIconProps> = ({ color0, primaryColor, style, ...props}) => {
|
||||
const propsStyles = {"--color-0": color0 || primaryColor};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path style={{fill: 'var(--color-0)'}} fillRule="evenodd" d="M15.857 5.571H8.143A2.571 2.571 0 0 0 5.57 8.143v7.714a2.571 2.571 0 0 0 2.572 2.572h7.714a2.572 2.572 0 0 0 2.572-2.572V8.143a2.571 2.571 0 0 0-2.572-2.572ZM8.143 3A5.143 5.143 0 0 0 3 8.143v7.714A5.143 5.143 0 0 0 8.143 21h7.714A5.143 5.143 0 0 0 21 15.857V8.143A5.143 5.143 0 0 0 15.857 3H8.143Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13.286 5.571h2.571V3m2.572 5.143a2.571 2.571 0 0 0-2.565-2.572h2.565v2.572Zm0 2.571V8.143h2.57v2.571h-2.57Zm0 5.143v-5.143 2.572h2.57v2.571h-2.57Zm-2.562 2.572a2.572 2.572 0 0 0 2.562-2.572v2.572h-2.562Zm-2.581 0h2.571V21h-2.571v-2.571Zm-5.143 0h2.571V21H8.143v-2.571ZM5.57 15.876a2.571 2.571 0 0 0 2.562 2.553H5.571v-2.553Zm0-.019v-2.571H3v2.571h2.571Zm0 4.455a5.169 5.169 0 0 1-1.883-1.883h1.883v1.883Zm14.741-1.883a5.169 5.169 0 0 1-1.884 1.883v-1.883h1.884ZM18.428 3.688a5.168 5.168 0 0 1 1.884 1.883h-1.883V3.688ZM3 10.714h2.571V8.143H3v2.571Zm.688-5.143h1.883V3.688a5.168 5.168 0 0 0-1.883 1.883ZM8.143 3v2.571h2.571V3H8.143Zm-.007 2.571H5.571v2.553a2.571 2.571 0 0 1 2.565-2.553ZM15.857 3h-2.571v2.571" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 827 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BorderColorNoneIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BorderColorNoneIcon: FC<BorderColorNoneIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M13.286 5.571h2.571V3m2.572 5.143a2.571 2.571 0 0 0-2.565-2.572h2.565v2.572Zm0 2.571V8.143h2.57v2.571h-2.57Zm0 5.143v-5.143 2.572h2.57v2.571h-2.57Zm-2.562 2.572a2.572 2.572 0 0 0 2.562-2.572v2.572h-2.562Zm-2.581 0h2.571V21h-2.571v-2.571Zm-5.143 0h2.571V21H8.143v-2.571ZM5.57 15.876a2.571 2.571 0 0 0 2.562 2.553H5.571v-2.553Zm0-.019v-2.571H3v2.571h2.571Zm0 4.455a5.169 5.169 0 0 1-1.883-1.883h1.883v1.883Zm14.741-1.883a5.169 5.169 0 0 1-1.884 1.883v-1.883h1.884ZM18.428 3.688a5.168 5.168 0 0 1 1.884 1.883h-1.883V3.688ZM3 10.714h2.571V8.143H3v2.571Zm.688-5.143h1.883V3.688a5.168 5.168 0 0 0-1.883 1.883ZM8.143 3v2.571h2.571V3H8.143Zm-.007 2.571H5.571v2.553a2.571 2.571 0 0 1 2.565-2.553ZM15.857 3h-2.571v2.571" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/brush/brush.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.504 3.793a.868.868 0 0 1 .312-.59.885.885 0 0 1 .642-.2l3.567.316c2.53.238 4.952.525 6.943.85 1.946.317 3.603.69 4.507 1.142.23.116.483.27.677.482.207.223.413.587.329 1.045-.079.413-.357.685-.571.846a3.53 3.53 0 0 1-.815.429c-1.196.469-3.461.917-7.016 1.357-1.69.209-2.918.414-3.768.606.24.052.505.103.79.153 1.164.202 2.628.375 4.184.508 1.185.097 2.365.251 3.535.462.54.1 1.047.216 1.479.344.413.122.829.274 1.138.478.153.1.357.261.493.507a1.078 1.078 0 0 1 .032.99c-.132.284-.36.465-.532.576-.2.122-.412.223-.634.3-.9.329-2.514.632-5.021.916-2.49.283-3.997.64-4.827.998-.347.149-.518.274-.596.348.03.043.086.11.183.198.176.16.433.336.762.522.657.367 1.503.708 2.32.973l3.092.945a.882.882 0 0 1 .525.424.864.864 0 0 1-.37 1.183.887.887 0 0 1-.674.057l-3.113-.95c-.884-.287-1.852-.672-2.646-1.115a5.956 5.956 0 0 1-1.083-.755c-.3-.27-.602-.632-.727-1.086-.14-.512-.019-1.022.321-1.444.306-.381.77-.667 1.305-.898 1.079-.464 2.798-.844 5.328-1.13 1.602-.182 2.76-.364 3.566-.537-.215-.048-.431-.092-.648-.133a35.158 35.158 0 0 0-3.358-.438c-1.585-.135-3.106-.314-4.338-.528a16.608 16.608 0 0 1-1.636-.356c-.44-.123-.879-.28-1.197-.495a1.381 1.381 0 0 1-.504-.569 1.075 1.075 0 0 1 .07-1.013c.152-.248.375-.41.553-.514.208-.117.428-.215.655-.291.946-.333 2.605-.653 5.123-.964 3.16-.392 5.132-.773 6.208-1.117-.748-.244-1.903-.496-3.388-.737-1.934-.317-4.313-.598-6.819-.834l-3.561-.316a.882.882 0 0 1-.597-.309.865.865 0 0 1-.2-.636Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
21
libs/components/icons/src/auto-icons/brush/brush.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BrushIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BrushIcon: FC<BrushIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path d="M3.504 3.793a.868.868 0 0 1 .312-.59.885.885 0 0 1 .642-.2l3.567.316c2.53.238 4.952.525 6.943.85 1.946.317 3.603.69 4.507 1.142.23.116.483.27.677.482.207.223.413.587.329 1.045-.079.413-.357.685-.571.846a3.53 3.53 0 0 1-.815.429c-1.196.469-3.461.917-7.016 1.357-1.69.209-2.918.414-3.768.606.24.052.505.103.79.153 1.164.202 2.628.375 4.184.508 1.185.097 2.365.251 3.535.462.54.1 1.047.216 1.479.344.413.122.829.274 1.138.478.153.1.357.261.493.507a1.078 1.078 0 0 1 .032.99c-.132.284-.36.465-.532.576-.2.122-.412.223-.634.3-.9.329-2.514.632-5.021.916-2.49.283-3.997.64-4.827.998-.347.149-.518.274-.596.348.03.043.086.11.183.198.176.16.433.336.762.522.657.367 1.503.708 2.32.973l3.092.945a.882.882 0 0 1 .525.424.864.864 0 0 1-.37 1.183.887.887 0 0 1-.674.057l-3.113-.95c-.884-.287-1.852-.672-2.646-1.115a5.956 5.956 0 0 1-1.083-.755c-.3-.27-.602-.632-.727-1.086-.14-.512-.019-1.022.321-1.444.306-.381.77-.667 1.305-.898 1.079-.464 2.798-.844 5.328-1.13 1.602-.182 2.76-.364 3.566-.537-.215-.048-.431-.092-.648-.133a35.158 35.158 0 0 0-3.358-.438c-1.585-.135-3.106-.314-4.338-.528a16.608 16.608 0 0 1-1.636-.356c-.44-.123-.879-.28-1.197-.495a1.381 1.381 0 0 1-.504-.569 1.075 1.075 0 0 1 .07-1.013c.152-.248.375-.41.553-.514.208-.117.428-.215.655-.291.946-.333 2.605-.653 5.123-.964 3.16-.392 5.132-.773 6.208-1.117-.748-.244-1.903-.496-3.388-.737-1.934-.317-4.313-.598-6.819-.834l-3.561-.316a.882.882 0 0 1-.597-.309.865.865 0 0 1-.2-.636Z" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/bullet/bullet.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M18 4.6H6A1.4 1.4 0 0 0 4.6 6v12A1.4 1.4 0 0 0 6 19.4h12a1.4 1.4 0 0 0 1.4-1.4V6A1.4 1.4 0 0 0 18 4.6ZM6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Z" clip-rule="evenodd"/><circle cx="12" cy="12" r="2"/></svg>
|
||||
|
After Width: | Height: | Size: 322 B |
21
libs/components/icons/src/auto-icons/bullet/bullet.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BulletIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BulletIcon: FC<BulletIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M18 4.6H6A1.4 1.4 0 0 0 4.6 6v12A1.4 1.4 0 0 0 6 19.4h12a1.4 1.4 0 0 0 1.4-1.4V6A1.4 1.4 0 0 0 18 4.6ZM6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Z" clipRule="evenodd" /><circle cx={12} cy={12} r={2} />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2"/></svg>
|
||||
|
After Width: | Height: | Size: 97 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BulletedList_1IconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BulletedList_1Icon: FC<BulletedList_1IconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<circle cx={12} cy={12} r={2} />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 .5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 197 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BulletedList_2IconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BulletedList_2Icon: FC<BulletedList_2IconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 .5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.606 10.163a.558.558 0 0 1 .788 0l1.443 1.443a.558.558 0 0 1 0 .788l-1.443 1.443a.558.558 0 0 1-.788 0l-1.443-1.443a.558.558 0 0 1 0-.788l1.443-1.443Z"/></svg>
|
||||
|
After Width: | Height: | Size: 231 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BulletedList_3IconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BulletedList_3Icon: FC<BulletedList_3IconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path d="M11.606 10.163a.558.558 0 0 1 .788 0l1.443 1.443a.558.558 0 0 1 0 .788l-1.443 1.443a.558.558 0 0 1-.788 0l-1.443-1.443a.558.558 0 0 1 0-.788l1.443-1.443Z" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M13.442 12 12 10.558 10.558 12 12 13.442 13.442 12Zm-1.048-1.837a.558.558 0 0 0-.788 0l-1.443 1.443a.558.558 0 0 0 0 .788l1.443 1.443a.558.558 0 0 0 .788 0l1.443-1.443a.558.558 0 0 0 0-.788l-1.443-1.443Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 321 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface BulletedList_4IconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const BulletedList_4Icon: FC<BulletedList_4IconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M13.442 12 12 10.558 10.558 12 12 13.442 13.442 12Zm-1.048-1.837a.558.558 0 0 0-.788 0l-1.443 1.443a.558.558 0 0 0 0 .788l1.443 1.443a.558.558 0 0 0 .788 0l1.443-1.443a.558.558 0 0 0 0-.788l-1.443-1.443Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/callout/callout.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 21H8v-1.6h12V21ZM20 16.4H4v-1.6h16v1.6ZM19 4.6H5a.4.4 0 0 0-.4.4v5c0 .22.18.4.4.4h14a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM5 3a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 313 B |
21
libs/components/icons/src/auto-icons/callout/callout.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CalloutIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CalloutIcon: FC<CalloutIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M20 21H8v-1.6h12V21ZM20 16.4H4v-1.6h16v1.6ZM19 4.6H5a.4.4 0 0 0-.4.4v5c0 .22.18.4.4.4h14a.4.4 0 0 0 .4-.4V5a.4.4 0 0 0-.4-.4ZM5 3a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/card/card.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19 5.6H5A1.4 1.4 0 0 0 3.6 7v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 19 5.6ZM5 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M6 8h12v1.6H6V8ZM6 11.5h12v1.6H6v-1.6Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 381 B |
21
libs/components/icons/src/auto-icons/card/card.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CardIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CardIcon: FC<CardIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M19 5.6H5A1.4 1.4 0 0 0 3.6 7v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 19 5.6ZM5 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z" clipRule="evenodd" /><path fillRule="evenodd" d="M6 8h12v1.6H6V8ZM6 11.5h12v1.6H6v-1.6Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M7 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm10.567 5.565a.8.8 0 1 0-1.134-1.13l-6.078 6.098-2.788-2.798a.8.8 0 0 0-1.134 1.13l3.213 3.224a1 1 0 0 0 1.417 0l6.504-6.524Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 314 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CheckBoxCheckIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CheckBoxCheckIcon: FC<CheckBoxCheckIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M7 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm10.567 5.565a.8.8 0 1 0-1.134-1.13l-6.078 6.098-2.788-2.798a.8.8 0 0 0-1.134 1.13l3.213 3.224a1 1 0 0 0 1.417 0l6.504-6.524Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17 5.6H7A1.4 1.4 0 0 0 5.6 7v10A1.4 1.4 0 0 0 7 18.4h10a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 17 5.6ZM7 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 291 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CheckBoxUncheckIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CheckBoxUncheckIcon: FC<CheckBoxUncheckIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M17 5.6H7A1.4 1.4 0 0 0 5.6 7v10A1.4 1.4 0 0 0 7 18.4h10a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 17 5.6ZM7 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19 5.6H5A1.4 1.4 0 0 0 3.6 7v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 19 5.6ZM5 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="m8.576 8.576.848.848L6.85 12l2.575 2.576-.848.848L5.15 12l3.425-3.424ZM15.424 15.424l-.848-.848L17.15 12l-2.575-2.576.848-.848L18.85 12l-3.425 3.424ZM10 15l3-6 1.073.537-3 6L10 15Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 523 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CodeBlockIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CodeBlockIcon: FC<CodeBlockIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M19 5.6H5A1.4 1.4 0 0 0 3.6 7v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7A1.4 1.4 0 0 0 19 5.6ZM5 4a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H5Z" clipRule="evenodd" /><path fillRule="evenodd" d="m8.576 8.576.848.848L6.85 12l2.575 2.576-.848.848L5.15 12l3.425-3.424ZM15.424 15.424l-.848-.848L17.15 12l-2.575-2.576.848-.848L18.85 12l-3.425 3.424ZM10 15l3-6 1.073.537-3 6L10 15Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/code/code.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m7.434 6.434 1.132 1.132L4.13 12l4.435 4.434-1.132 1.132L1.87 12l5.565-5.566ZM16.566 17.566l-1.132-1.132L19.87 12l-4.435-4.434 1.132-1.132L22.13 12l-5.565 5.566ZM9.333 16 13 8l1.454.667-3.666 8L9.333 16Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 321 B |
21
libs/components/icons/src/auto-icons/code/code.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CodeIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CodeIcon: FC<CodeIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m7.434 6.434 1.132 1.132L4.13 12l4.435 4.434-1.132 1.132L1.87 12l5.565-5.566ZM16.566 17.566l-1.132-1.132L19.87 12l-4.435-4.434 1.132-1.132L22.13 12l-5.565 5.566ZM9.333 16 13 8l1.454.667-3.666 8L9.333 16Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 10.4a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8Zm0 1.6a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM10 14.8A5.2 5.2 0 0 0 4.8 20v1H3.2v-1a6.8 6.8 0 0 1 6.8-6.8h4a6.8 6.8 0 0 1 6.8 6.8v1h-1.6v-1a5.2 5.2 0 0 0-5.2-5.2h-4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 330 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CollaboratorIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CollaboratorIcon: FC<CollaboratorIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M12 10.4a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8Zm0 1.6a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM10 14.8A5.2 5.2 0 0 0 4.8 20v1H3.2v-1a6.8 6.8 0 0 1 6.8-6.8h4a6.8 6.8 0 0 1 6.8 6.8v1h-1.6v-1a5.2 5.2 0 0 0-5.2-5.2h-4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/comment/comment.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m12.663 16.4 1.737 1.737V16.4H18a1.4 1.4 0 0 0 1.4-1.4V6A1.4 1.4 0 0 0 18 4.6H6A1.4 1.4 0 0 0 4.6 6v9A1.4 1.4 0 0 0 6 16.4h6.663ZM16 20.552a.6.6 0 0 1-1.024.424L12 18H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-2v2.552Z" clip-rule="evenodd"/><circle cx="8" cy="10.5" r="1"/><circle cx="12" cy="10.5" r="1"/><circle cx="16" cy="10.5" r="1"/></svg>
|
||||
|
After Width: | Height: | Size: 457 B |
21
libs/components/icons/src/auto-icons/comment/comment.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface CommentIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const CommentIcon: FC<CommentIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m12.663 16.4 1.737 1.737V16.4H18a1.4 1.4 0 0 0 1.4-1.4V6A1.4 1.4 0 0 0 18 4.6H6A1.4 1.4 0 0 0 4.6 6v9A1.4 1.4 0 0 0 6 16.4h6.663ZM16 20.552a.6.6 0 0 1-1.024.424L12 18H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v9a3 3 0 0 1-3 3h-2v2.552Z" clipRule="evenodd" /><circle cx={8} cy={10.5} r={1} /><circle cx={12} cy={10.5} r={1} /><circle cx={16} cy={10.5} r={1} />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +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>
|
||||
|
After Width: | Height: | Size: 224 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ConectorArrowIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ConectorArrowIcon: FC<ConectorArrowIconProps> = ({ color, style, ...props}) => {
|
||||
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" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M3.434 20.434a.8.8 0 0 1 0-1.131L19.303 3.434a.8.8 0 1 1 1.131 1.132L4.566 20.434a.8.8 0 0 1-1.132 0Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 219 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ConectorLineIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ConectorLineIcon: FC<ConectorLineIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M3.434 20.434a.8.8 0 0 1 0-1.131L19.303 3.434a.8.8 0 1 1 1.131 1.132L4.566 20.434a.8.8 0 0 1-1.132 0Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M15.6 6.5a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 0 0-3.8 0ZM17.5 3a3.5 3.5 0 0 0-2.924 5.424l-6.152 6.152a3.5 3.5 0 1 0 1.1 1.162l6.214-6.213A3.5 3.5 0 1 0 17.5 3ZM4.6 17.5a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 0 0-3.8 0Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 322 B |
21
libs/components/icons/src/auto-icons/connector/connector.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface ConnectorIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const ConnectorIcon: FC<ConnectorIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M15.6 6.5a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 0 0-3.8 0ZM17.5 3a3.5 3.5 0 0 0-2.924 5.424l-6.152 6.152a3.5 3.5 0 1 0 1.1 1.162l6.214-6.213A3.5 3.5 0 1 0 17.5 3ZM4.6 17.5a1.9 1.9 0 1 0 3.8 0 1.9 1.9 0 0 0-3.8 0Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M17.167 5.833 20 3l.99.99-2.833 2.833-.99-.99ZM12.444 10.556l2.834-2.834.99.99-2.834 2.834-.99-.99ZM7.722 15.278l2.834-2.834.99.99-2.834 2.834-.99-.99ZM3 20l2.833-2.833.99.99L3.99 20.99 3 20Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 309 B |
21
libs/components/icons/src/auto-icons/dash-line/dash-line.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DashLineIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DashLineIcon: FC<DashLineIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M17.167 5.833 20 3l.99.99-2.833 2.833-.99-.99ZM12.444 10.556l2.834-2.834.99.99-2.834 2.834-.99-.99ZM7.722 15.278l2.834-2.834.99.99-2.834 2.834-.99-.99ZM3 20l2.833-2.833.99.99L3.99 20.99 3 20Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/date/date.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M18 6.2H6a1.4 1.4 0 0 0-1.4 1.4V18A1.4 1.4 0 0 0 6 19.4h12a1.4 1.4 0 0 0 1.4-1.4V7.6A1.4 1.4 0 0 0 18 6.2ZM6 4.6a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V7.6a3 3 0 0 0-3-3H6Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M20 11H4V9.4h16V11ZM8.8 3a.8.8 0 0 1 .8.8v3.4a.8.8 0 0 1-1.6 0V3.8a.8.8 0 0 1 .8-.8ZM15.2 8a.8.8 0 0 1-.8-.8V3.8a.8.8 0 0 1 1.6 0v3.4a.8.8 0 0 1-.8.8Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 501 B |
21
libs/components/icons/src/auto-icons/date/date.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DateIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DateIcon: FC<DateIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M18 6.2H6a1.4 1.4 0 0 0-1.4 1.4V18A1.4 1.4 0 0 0 6 19.4h12a1.4 1.4 0 0 0 1.4-1.4V7.6A1.4 1.4 0 0 0 18 6.2ZM6 4.6a3 3 0 0 0-3 3V18a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V7.6a3 3 0 0 0-3-3H6Z" clipRule="evenodd" /><path fillRule="evenodd" d="M20 11H4V9.4h16V11ZM8.8 3a.8.8 0 0 1 .8.8v3.4a.8.8 0 0 1-1.6 0V3.8a.8.8 0 0 1 .8-.8ZM15.2 8a.8.8 0 0 1-.8-.8V3.8a.8.8 0 0 1 1.6 0v3.4a.8.8 0 0 1-.8.8Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M22 7H2V5.4h20V7ZM8 2h8v1.6H8V2ZM5.6 7v12A1.4 1.4 0 0 0 7 20.4h10a1.4 1.4 0 0 0 1.4-1.4V7H20v12a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7h1.6Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M9 18V9h1.6v9H9ZM15 9v9h-1.6V9H15Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 336 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DeleteCashBinIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DeleteCashBinIcon: FC<DeleteCashBinIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M22 7H2V5.4h20V7ZM8 2h8v1.6H8V2ZM5.6 7v12A1.4 1.4 0 0 0 7 20.4h10a1.4 1.4 0 0 0 1.4-1.4V7H20v12a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7h1.6Z" clipRule="evenodd" /><path fillRule="evenodd" d="M9 18V9h1.6v9H9ZM15 9v9h-1.6V9H15Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M11.578 12.007 9 14.585l.425.425 2.578-2.578 2.582 2.582.425-.425-2.582-2.582 2.582-2.582L14.585 9l-2.582 2.582-2.578-2.578L9 9.43l2.578 2.577Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 261 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DeleteSmallTagIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DeleteSmallTagIcon: FC<DeleteSmallTagIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M11.578 12.007 9 14.585l.425.425 2.578-2.578 2.582 2.582.425-.425-2.582-2.582 2.582-2.582L14.585 9l-2.582 2.582-2.578-2.578L9 9.43l2.578 2.577Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/divider/divider.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M21 12.8H3v-1.6h18v1.6ZM4 2V9.2h1.6V3.6h6.737l5.6 5.6H20V9l-7-7H4Zm14.4 12.8H20V22H7a3 3 0 0 1-3-3v-4.2h1.6V19A1.4 1.4 0 0 0 7 20.4h11.4v-5.6Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 260 B |
21
libs/components/icons/src/auto-icons/divider/divider.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DividerIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DividerIcon: FC<DividerIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M21 12.8H3v-1.6h18v1.6ZM4 2V9.2h1.6V3.6h6.737l5.6 5.6H20V9l-7-7H4Zm14.4 12.8H20V22H7a3 3 0 0 1-3-3v-4.2h1.6V19A1.4 1.4 0 0 0 7 20.4h11.4v-5.6Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M19 6.6H5a.4.4 0 0 0-.4.4v10c0 .22.18.4.4.4h14a.4.4 0 0 0 .4-.4V7a.4.4 0 0 0-.4-.4ZM5 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M17 9.8H7V8.2h10v1.6Zm-5 3H7v-1.6h5v1.6Zm-5 3h7v-1.6H7v1.6Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 383 B |
21
libs/components/icons/src/auto-icons/doc-view/doc-view.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DocViewIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DocViewIcon: FC<DocViewIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M19 6.6H5a.4.4 0 0 0-.4.4v10c0 .22.18.4.4.4h14a.4.4 0 0 0 .4-.4V7a.4.4 0 0 0-.4-.4ZM5 5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5Z" clipRule="evenodd" /><path fillRule="evenodd" d="M17 9.8H7V8.2h10v1.6Zm-5 3H7v-1.6h5v1.6Zm-5 3h7v-1.6H7v1.6Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/done/done.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M21.207 7.207 9 19.414l-6.207-6.207 1.414-1.414L9 16.586 19.793 5.793l1.414 1.414Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 200 B |
21
libs/components/icons/src/auto-icons/done/done.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DoneIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DoneIcon: FC<DoneIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M21.207 7.207 9 19.414l-6.207-6.207 1.414-1.414L9 16.586 19.793 5.793l1.414 1.414Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M18 8.6h-8A1.4 1.4 0 0 0 8.6 10v8a1.4 1.4 0 0 0 1.4 1.4h8a1.4 1.4 0 0 0 1.4-1.4v-8A1.4 1.4 0 0 0 18 8.6ZM10 7a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-8a3 3 0 0 0-3-3h-8Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M13.2 17v-6h1.6v6h-1.6Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M11 13.2h6v1.6h-6v-1.6ZM6 4.6h8A1.4 1.4 0 0 1 15.4 6v1H17V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h1v-1.6H6A1.4 1.4 0 0 1 4.6 14V6A1.4 1.4 0 0 1 6 4.6Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 579 B |
21
libs/components/icons/src/auto-icons/duplicate/duplicate.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface DuplicateIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const DuplicateIcon: FC<DuplicateIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M18 8.6h-8A1.4 1.4 0 0 0 8.6 10v8a1.4 1.4 0 0 0 1.4 1.4h8a1.4 1.4 0 0 0 1.4-1.4v-8A1.4 1.4 0 0 0 18 8.6ZM10 7a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3v-8a3 3 0 0 0-3-3h-8Z" clipRule="evenodd" /><path fillRule="evenodd" d="M13.2 17v-6h1.6v6h-1.6Z" clipRule="evenodd" /><path fillRule="evenodd" d="M11 13.2h6v1.6h-6v-1.6ZM6 4.6h8A1.4 1.4 0 0 1 15.4 6v1H17V6a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h1v-1.6H6A1.4 1.4 0 0 1 4.6 14V6A1.4 1.4 0 0 1 6 4.6Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/edit/edit.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m6.398 15.864-.383 1.151.97.97 1.15-.383 8.234-8.233L14.63 7.63l-8.233 8.233ZM15.763 6.5 17.5 8.237l1.369-1.368A1.228 1.228 0 0 0 17.13 5.13L15.763 6.5ZM16 4 5.133 14.867a.8.8 0 0 0-.193.312l-1.434 4.303a.8.8 0 0 0 1.012 1.012L8.82 19.06a.8.8 0 0 0 .312-.194L20 8a2.828 2.828 0 1 0-4-4Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 404 B |
21
libs/components/icons/src/auto-icons/edit/edit.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface EditIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const EditIcon: FC<EditIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m6.398 15.864-.383 1.151.97.97 1.15-.383 8.234-8.233L14.63 7.63l-8.233 8.233ZM15.763 6.5 17.5 8.237l1.369-1.368A1.228 1.228 0 0 0 17.13 5.13L15.763 6.5ZM16 4 5.133 14.867a.8.8 0 0 0-.193.312l-1.434 4.303a.8.8 0 0 0 1.012 1.012L8.82 19.06a.8.8 0 0 0 .312-.194L20 8a2.828 2.828 0 1 0-4-4Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/ellipse/ellipse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 20.4a8.4 8.4 0 1 0 0-16.8 8.4 8.4 0 0 0 0 16.8Zm0 1.6c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 241 B |
21
libs/components/icons/src/auto-icons/ellipse/ellipse.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface EllipseIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const EllipseIcon: FC<EllipseIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M12 20.4a8.4 8.4 0 1 0 0-16.8 8.4 8.4 0 0 0 0 16.8Zm0 1.6c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/email/email.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M5 5.6h14c.062 0 .124.004.184.012L12 11 4.816 5.612c.06-.008.122-.012.184-.012Zm-1.108.544a1.377 1.377 0 0 0-.025.034l.025-.034Zm-.264.577c-.018.09-.028.183-.028.279v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7c0-.096-.01-.189-.028-.279L12 13.001 3.628 6.72Zm16.504-.545a1.339 1.339 0 0 0-.023-.03l.023.03ZM2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 501 B |
21
libs/components/icons/src/auto-icons/email/email.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface EmailIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const EmailIcon: FC<EmailIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M5 5.6h14c.062 0 .124.004.184.012L12 11 4.816 5.612c.06-.008.122-.012.184-.012Zm-1.108.544a1.377 1.377 0 0 0-.025.034l.025-.034Zm-.264.577c-.018.09-.028.183-.028.279v10A1.4 1.4 0 0 0 5 18.4h14a1.4 1.4 0 0 0 1.4-1.4V7c0-.096-.01-.189-.028-.279L12 13.001 3.628 6.72Zm16.504-.545a1.339 1.339 0 0 0-.023-.03l.023.03ZM2 7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/embed/embed.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M5.959 12.179C4.312 13.825 4.33 16.513 6 18.182c1.67 1.67 4.357 1.688 6.003.041l5.395-5.394 1.151 1.151-5.394 5.395c-2.274 2.273-5.986 2.248-8.29-.057-2.306-2.305-2.331-6.017-.057-8.29l6.92-6.92c1.588-1.588 4.18-1.57 5.789.039 1.61 1.61 1.627 4.201.04 5.789L10.99 16.5c-.902.902-2.373.892-3.288-.022-.914-.914-.924-2.386-.022-3.288l6.033-6.033 1.152 1.151-6.034 6.034a.708.708 0 0 0 .007 1 .708.708 0 0 0 1 .007l6.566-6.566c.96-.96.95-2.528-.024-3.502-.973-.973-2.541-.984-3.502-.023l-6.92 6.92Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 613 B |
21
libs/components/icons/src/auto-icons/embed/embed.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface EmbedIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const EmbedIcon: FC<EmbedIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M5.959 12.179C4.312 13.825 4.33 16.513 6 18.182c1.67 1.67 4.357 1.688 6.003.041l5.395-5.394 1.151 1.151-5.394 5.395c-2.274 2.273-5.986 2.248-8.29-.057-2.306-2.305-2.331-6.017-.057-8.29l6.92-6.92c1.588-1.588 4.18-1.57 5.789.039 1.61 1.61 1.627 4.201.04 5.789L10.99 16.5c-.902.902-2.373.892-3.288-.022-.914-.914-.924-2.386-.022-3.288l6.033-6.033 1.152 1.151-6.034 6.034a.708.708 0 0 0 .007 1 .708.708 0 0 0 1 .007l6.566-6.566c.96-.96.95-2.528-.024-3.502-.973-.973-2.541-.984-3.502-.023l-6.92 6.92Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/eraser/eraser.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M15.98 3.848a2.8 2.8 0 0 0-3.96 0L2.848 13.02a2.8 2.8 0 0 0 0 3.96l3 3a2.8 2.8 0 0 0 1.98.82H21v-1.6H12.93l7.22-7.22a2.8 2.8 0 0 0 0-3.96L15.98 3.848Zm.454 9.586L10.668 19.2h-2.84a1.2 1.2 0 0 1-.848-.352l-3-3a1.2 1.2 0 0 1 0-1.697l6.586-6.585 5.868 5.868Zm1.132-1.131-5.87-5.869 1.455-1.454a1.2 1.2 0 0 1 1.697 0L19.02 9.15a1.2 1.2 0 0 1 0 1.697l-1.454 1.455Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 477 B |
21
libs/components/icons/src/auto-icons/eraser/eraser.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface EraserIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const EraserIcon: FC<EraserIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M15.98 3.848a2.8 2.8 0 0 0-3.96 0L2.848 13.02a2.8 2.8 0 0 0 0 3.96l3 3a2.8 2.8 0 0 0 1.98.82H21v-1.6H12.93l7.22-7.22a2.8 2.8 0 0 0 0-3.96L15.98 3.848Zm.454 9.586L10.668 19.2h-2.84a1.2 1.2 0 0 1-.848-.352l-3-3a1.2 1.2 0 0 1 0-1.697l6.586-6.585 5.868 5.868Zm1.132-1.131-5.87-5.869 1.455-1.454a1.2 1.2 0 0 1 1.697 0L19.02 9.15a1.2 1.2 0 0 1 0 1.697l-1.454 1.455Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/figma/figma.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path fill="#0ACF83" d="M9.25 21c1.518 0 2.75-1.344 2.75-3v-3H9.25c-1.518 0-2.75 1.344-2.75 3s1.232 3 2.75 3Z"/><path fill="#A259FF" d="M6.5 12c0-1.656 1.232-3 2.75-3H12v6H9.25c-1.518 0-2.75-1.344-2.75-3Z"/><path fill="#F24E1E" d="M6.5 6c0-1.656 1.232-3 2.75-3H12v6H9.25C7.732 9 6.5 7.656 6.5 6Z"/><path fill="#FF7262" d="M12 3h2.75c1.518 0 2.75 1.344 2.75 3s-1.232 3-2.75 3H12V3Z"/><path fill="#1ABCFE" d="M17.5 12c0 1.656-1.232 3-2.75 3S12 13.656 12 12s1.232-3 2.75-3 2.75 1.344 2.75 3Z"/></svg>
|
||||
|
After Width: | Height: | Size: 569 B |
21
libs/components/icons/src/auto-icons/figma/figma.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface FigmaIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const FigmaIcon: FC<FigmaIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fill="#0ACF83" d="M9.25 21c1.518 0 2.75-1.344 2.75-3v-3H9.25c-1.518 0-2.75 1.344-2.75 3s1.232 3 2.75 3Z" /><path fill="#A259FF" d="M6.5 12c0-1.656 1.232-3 2.75-3H12v6H9.25c-1.518 0-2.75-1.344-2.75-3Z" /><path fill="#F24E1E" d="M6.5 6c0-1.656 1.232-3 2.75-3H12v6H9.25C7.732 9 6.5 7.656 6.5 6Z" /><path fill="#FF7262" d="M12 3h2.75c1.518 0 2.75 1.344 2.75 3s-1.232 3-2.75 3H12V3Z" /><path fill="#1ABCFE" d="M17.5 12c0 1.656-1.232 3-2.75 3S12 13.656 12 12s1.232-3 2.75-3 2.75 1.344 2.75 3Z" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/file/file.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="m14.337 8.6-3-3H4a.4.4 0 0 0-.4.4v12c0 .22.18.4.4.4h16a.4.4 0 0 0 .4-.4V9a.4.4 0 0 0-.4-.4h-5.663ZM12 4l3 3h5a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h8Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M21 12H3v-1.6h18V12Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 364 B |
21
libs/components/icons/src/auto-icons/file/file.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface FileIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const FileIcon: FC<FileIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="m14.337 8.6-3-3H4a.4.4 0 0 0-.4.4v12c0 .22.18.4.4.4h16a.4.4 0 0 0 .4-.4V9a.4.4 0 0 0-.4-.4h-5.663ZM12 4l3 3h5a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h8Z" clipRule="evenodd" /><path fillRule="evenodd" d="M21 12H3v-1.6h18V12Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
1
libs/components/icons/src/auto-icons/filter/filter.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M10.6 10.82v7.817l2.8-2.8v-5.016L18.584 4.6H5.416l5.184 6.22ZM15 16.5 10.5 21H9v-9.6L3.367 4.64A1 1 0 0 1 4.135 3h15.73a1 1 0 0 1 .768 1.64L15 11.4v5.1Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 270 B |
21
libs/components/icons/src/auto-icons/filter/filter.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface FilterIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const FilterIcon: FC<FilterIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M10.6 10.82v7.817l2.8-2.8v-5.016L18.584 4.6H5.416l5.184 6.22ZM15 16.5 10.5 21H9v-9.6L3.367 4.64A1 1 0 0 1 4.135 3h15.73a1 1 0 0 1 .768 1.64L15 11.4v5.1Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm-.45 16 5.51-14h1.862l5.51 14h-1.745l-1.49-3.922H8.766L7.276 19H5.55Zm6.412-12.275-2.687 7h5.412l-2.647-7h-.078Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 302 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface FormatBackgroundIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const FormatBackgroundIcon: FC<FormatBackgroundIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H6Zm-.45 16 5.51-14h1.862l5.51 14h-1.745l-1.49-3.922H8.766L7.276 19H5.55Zm6.412-12.275-2.687 7h5.412l-2.647-7h-.078Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M7.2 5.2h5.3a2.3 2.3 0 1 1 0 4.6H7.2V5.2ZM5 10V3h7.5a4.5 4.5 0 0 1 3.578 7.23A5.5 5.5 0 0 1 14.5 21H5V10Zm2.2 2.2h7.3a3.3 3.3 0 0 1 0 6.6H7.2v-6.6Z" clip-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 265 B |
@@ -0,0 +1,21 @@
|
||||
|
||||
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';
|
||||
|
||||
export interface FormatBoldEmphasisIconProps extends Omit<SvgIconProps, 'color'> {
|
||||
color?: string
|
||||
}
|
||||
|
||||
export const FormatBoldEmphasisIcon: FC<FormatBoldEmphasisIconProps> = ({ color, style, ...props}) => {
|
||||
const propsStyles = {"color": color};
|
||||
const customStyles = {};
|
||||
const styles = {...propsStyles, ...customStyles, ...style}
|
||||
return (
|
||||
<SvgIcon style={styles} {...props}>
|
||||
<path fillRule="evenodd" d="M7.2 5.2h5.3a2.3 2.3 0 1 1 0 4.6H7.2V5.2ZM5 10V3h7.5a4.5 4.5 0 0 1 3.578 7.23A5.5 5.5 0 0 1 14.5 21H5V10Zm2.2 2.2h7.3a3.3 3.3 0 0 1 0 6.6H7.2v-6.6Z" clipRule="evenodd" />
|
||||
</SvgIcon>
|
||||
)
|
||||
};
|
||||