logo-site.tsx 344 B

1234567891011121314151617181920
  1. import type { FC } from 'react'
  2. import classNames from 'classnames'
  3. type LogoSiteProps = {
  4. className?: string
  5. }
  6. const LogoSite: FC<LogoSiteProps> = ({
  7. className,
  8. }) => {
  9. return (
  10. <img
  11. src='/logo/logo-site.png'
  12. className={classNames('block w-auto h-10', className)}
  13. alt='logo'
  14. />
  15. )
  16. }
  17. export default LogoSite