Files
bot-whatsapp/packages/docs/src/components/atoms/Logo.tsx
2022-12-23 19:55:15 +01:00

19 lines
532 B
TypeScript

import { component$ } from '@builder.io/qwik'
// @ts-ignore
import logoSrc from '~/assets/images/chatbot-whatsapp.png?width=64&height=64&png'
export default component$(() => (
<span class="self-center ml-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white flex items-center">
<img
src={logoSrc}
class="inline-block mr-1"
width={32}
height={32}
alt="Qwind Logo"
loading="lazy"
/>
Chatbot
</span>
))