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

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M5.863 17.201.337 11.676l5.526-5.524 1.053 1.053-4.472 4.471 4.472 4.472-1.053 1.053ZM17.813 17.201l-1.053-1.053 4.47-4.472-4.47-4.471 1.053-1.053 5.524 5.524-5.524 5.525ZM10.319 16.26l-1.29-.745 4.848-8.4 1.29.746-4.848 8.398Z" clip-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 345 B

View File

@@ -0,0 +1,14 @@
import { FC } from 'react';
import { SvgIcon, SvgIconProps } from '@mui/material';
/**
* @deprecated Please use the icon from @toeverything/components/ui. If it does not exist, contact the designer to add。
*/
export const CodeBlockInlineIcon: FC<SvgIconProps> = props => (
<SvgIcon {...props}>
<path
fillRule="evenodd"
d="M5.863 17.201.337 11.676l5.526-5.524 1.053 1.053-4.472 4.471 4.472 4.472-1.053 1.053ZM17.813 17.201l-1.053-1.053 4.47-4.472-4.47-4.471 1.053-1.053 5.524 5.524-5.524 5.525ZM10.319 16.26l-1.29-.745 4.848-8.4 1.29.746-4.848 8.398Z"
clipRule="evenodd"
/>
</SvgIcon>
);