25 lines
669 B
TypeScript
25 lines
669 B
TypeScript
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>
|
|
)
|
|
}
|