You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logo-site.tsx 424B

12345678910111213141516171819202122
  1. 'use client'
  2. import type { FC } from 'react'
  3. import { basePath } from '@/utils/var'
  4. import classNames from '@/utils/classnames'
  5. type LogoSiteProps = {
  6. className?: string
  7. }
  8. const LogoSite: FC<LogoSiteProps> = ({
  9. className,
  10. }) => {
  11. return (
  12. <img
  13. src={`${basePath}/logo/logo.png`}
  14. className={classNames('block w-[22.651px] h-[24.5px]', className)}
  15. alt='logo'
  16. />
  17. )
  18. }
  19. export default LogoSite