11 lines
238 B
TypeScript
Raw Normal View History

2025-08-05 12:35:40 +07:00
// React Imports
import type { SVGAttributes } from 'react'
const Logo = (props: SVGAttributes<SVGElement>) => {
return (
2025-08-08 01:49:00 +07:00
<img src={'/images/logos/logo.png'} width={38} height={38} className='rounded' />
2025-08-05 12:35:40 +07:00
)
}
export default Logo