11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
// React Imports
|
|
import type { SVGAttributes } from 'react'
|
|
|
|
const Logo = (props: SVGAttributes<SVGElement>) => {
|
|
return (
|
|
<img src={'/images/logos/logo.png'} width={38} height={38} className='rounded' />
|
|
)
|
|
}
|
|
|
|
export default Logo
|