init: the first public commit for AFFiNE

This commit is contained in:
DarkSky
2022-07-22 15:49:21 +08:00
commit e3e3741393
1451 changed files with 108124 additions and 0 deletions
@@ -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>
)
};