2025-08-08 01:49:00 +07:00

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