Finished translations / bug fixes

This commit is contained in:
Sebastian Seedorf
2022-08-20 14:47:04 +02:00
parent 664f766cb6
commit 2fd010e003
13 changed files with 162 additions and 66 deletions

View File

@@ -0,0 +1,24 @@
import { FC } from 'react'
import styles from './Icon.module.css'
import cx from 'classnames'
interface Props {
className?: string
}
export const GraphIcon: FC<Props> = ({ className }) => {
return (
<svg
version='1.1'
viewBox='0 0 50 50'
xmlSpace='preserve'
xmlns='http://www.w3.org/2000/svg'
xmlnsXlink='http://www.w3.org/1999/xlink'
className={cx(styles.icon, className)}
>
<g id='Layer_1'>
<path d='M13,37H8V26h16v11h-5v12h12V37h-5V26h16v11h-5v12h12V37h-5V24H26V13h7V1H17v12h7v11H6v13H1v12h12V37z M29,47h-8v-8h8V47z M47,47h-8v-8h8V47z M19,3h12v8H19V3z M11,47H3v-8h8V47z' />
</g>
</svg>
)
}