1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 17:54:53 +01:00
market/src/components/atoms/Logo.tsx

8 lines
259 B
TypeScript

import React, { ReactElement } from 'react'
import { ReactComponent as LogoAsset } from '@oceanprotocol/art/logo/logo.svg'
import styles from './Logo.module.css'
export default function Logo(): ReactElement {
return <LogoAsset className={styles.logo} />
}