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="M2 20V4h1.6v16H2ZM14 4v16h-1.6V4H14Z" clip-rule="evenodd"/><path fill-rule="evenodd" d="M12.5 12.8h-9v-1.6h9v1.6Z" clip-rule="evenodd"/><path d="M20.68 9.29c-.36.375-.81.72-1.35 1.05-.54.3-1.05.51-1.53.63v1.74c.99-.285 1.8-.72 2.445-1.305V20H22V9.29h-1.32Z"/></svg>

After

Width:  |  Height:  |  Size: 354 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 HeadingOneIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HeadingOneIcon: FC<HeadingOneIconProps> = ({ color, style, ...props}) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
return (
<SvgIcon style={styles} {...props}>
<path fillRule="evenodd" d="M2 20V4h1.6v16H2ZM14 4v16h-1.6V4H14Z" clipRule="evenodd" /><path fillRule="evenodd" d="M12.5 12.8h-9v-1.6h9v1.6Z" clipRule="evenodd" /><path d="M20.68 9.29c-.36.375-.81.72-1.35 1.05-.54.3-1.05.51-1.53.63v1.74c.99-.285 1.8-.72 2.445-1.305V20H22V9.29h-1.32Z" />
</SvgIcon>
)
};