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 d="M14.811 20.999a11.652 11.652 0 0 1-4.541-1.02l-5.595-2.633a2.302 2.302 0 0 1-1.09-3.052A2.274 2.274 0 0 1 6.619 13.2l1.044.492c-.49-1.668-1.471-4.428-2.943-6.04l-.908-.738a2.206 2.206 0 0 1 1.043-3.887c.564-.09 1.14.042 1.61.37A12.471 12.471 0 0 1 9.315 6.24c.267-.4.656-.704 1.108-.865a2.21 2.21 0 0 1 1.735.082c.242.113.464.267.654.455.245-.279.558-.49.909-.61a2.074 2.074 0 0 1 1.616.082c.287.13.54.327.736.574.102-.066.212-.118.327-.155a1.594 1.594 0 0 1 2.044.966l2.17 6.049a6.697 6.697 0 0 1 0 4.473 5.469 5.469 0 0 1-3.315 3.325 7.499 7.499 0 0 1-2.489.383Zm-9.054-6.596c-.131-.028-.33-.036-.428 0a.907.907 0 0 0-.527.474.913.913 0 0 0 .445 1.23l5.559 2.687s3.288 1.53 5.995.556a4.012 4.012 0 0 0 2.507-2.478 5.281 5.281 0 0 0 0-3.544l-2.18-6.05a.228.228 0 0 0-.43-.022.237.237 0 0 0-.006.178l.308.91a.684.684 0 0 1-.408.912.68.68 0 0 1-.909-.41l-.6-1.676a.82.82 0 0 0-.39-.429.734.734 0 0 0-.572 0 .746.746 0 0 0-.481.911l.254.957a.676.676 0 0 1-.463.82.67.67 0 0 1-.836-.42l-.6-1.657a.91.91 0 0 0-1.153-.538.91.91 0 0 0-.536 1.157l.436 1.221a.685.685 0 0 1-.409.911.68.68 0 0 1-.908-.41A10.518 10.518 0 0 0 5.592 4.72a.816.816 0 0 0-1.135.182c-.131.173-.12.335-.095.551a.839.839 0 0 0 .302.551l.908.765.064.064c2.48 2.67 3.633 7.88 3.678 8.1a.685.685 0 0 1-.245.683.69.69 0 0 1-.708.082l-1.585-.82c-.395-.216-.478-.29-1.019-.474Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 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 HandToolIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const HandToolIcon: FC<HandToolIconProps> = ({ color, style, ...props}) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
return (
<SvgIcon style={styles} {...props}>
<path d="M14.811 20.999a11.652 11.652 0 0 1-4.541-1.02l-5.595-2.633a2.302 2.302 0 0 1-1.09-3.052A2.274 2.274 0 0 1 6.619 13.2l1.044.492c-.49-1.668-1.471-4.428-2.943-6.04l-.908-.738a2.206 2.206 0 0 1 1.043-3.887c.564-.09 1.14.042 1.61.37A12.471 12.471 0 0 1 9.315 6.24c.267-.4.656-.704 1.108-.865a2.21 2.21 0 0 1 1.735.082c.242.113.464.267.654.455.245-.279.558-.49.909-.61a2.074 2.074 0 0 1 1.616.082c.287.13.54.327.736.574.102-.066.212-.118.327-.155a1.594 1.594 0 0 1 2.044.966l2.17 6.049a6.697 6.697 0 0 1 0 4.473 5.469 5.469 0 0 1-3.315 3.325 7.499 7.499 0 0 1-2.489.383Zm-9.054-6.596c-.131-.028-.33-.036-.428 0a.907.907 0 0 0-.527.474.913.913 0 0 0 .445 1.23l5.559 2.687s3.288 1.53 5.995.556a4.012 4.012 0 0 0 2.507-2.478 5.281 5.281 0 0 0 0-3.544l-2.18-6.05a.228.228 0 0 0-.43-.022.237.237 0 0 0-.006.178l.308.91a.684.684 0 0 1-.408.912.68.68 0 0 1-.909-.41l-.6-1.676a.82.82 0 0 0-.39-.429.734.734 0 0 0-.572 0 .746.746 0 0 0-.481.911l.254.957a.676.676 0 0 1-.463.82.67.67 0 0 1-.836-.42l-.6-1.657a.91.91 0 0 0-1.153-.538.91.91 0 0 0-.536 1.157l.436 1.221a.685.685 0 0 1-.409.911.68.68 0 0 1-.908-.41A10.518 10.518 0 0 0 5.592 4.72a.816.816 0 0 0-1.135.182c-.131.173-.12.335-.095.551a.839.839 0 0 0 .302.551l.908.765.064.064c2.48 2.67 3.633 7.88 3.678 8.1a.685.685 0 0 1-.245.683.69.69 0 0 1-.708.082l-1.585-.82c-.395-.216-.478-.29-1.019-.474Z" />
</SvgIcon>
)
};