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="m12.879 5.707 1.414-1.414L22 12l-7.707 7.707-1.414-1.414L18.172 13H9c-2.074 0-3.274.842-3.988 1.834C4.26 15.878 4 17.16 4 18H2c0-1.16.34-2.878 1.388-4.334C4.474 12.158 6.275 11 9.001 11h9.17L12.88 5.707Z" 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 ForwardRedoIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const ForwardRedoIcon: FC<ForwardRedoIconProps> = ({ color, style, ...props}) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
return (
<SvgIcon style={styles} {...props}>
<path fillRule="evenodd" d="m12.879 5.707 1.414-1.414L22 12l-7.707 7.707-1.414-1.414L18.172 13H9c-2.074 0-3.274.842-3.988 1.834C4.26 15.878 4 17.16 4 18H2c0-1.16.34-2.878 1.388-4.334C4.474 12.158 6.275 11 9.001 11h9.17L12.88 5.707Z" clipRule="evenodd" />
</SvgIcon>
)
};