11 lines
417 B
TypeScript
11 lines
417 B
TypeScript
|
|
import { WhatsappLogoIcon } from '@phosphor-icons/react/ssr'
|
||
|
|
|
||
|
|
const WhatsAppBubble = () => {
|
||
|
|
return (
|
||
|
|
<a href="https://wa.me/02129755506" target="_blank" rel="noopener noreferrer" className=' z-40 bottom-4 bg-[#25D366] cursor-pointer w-14 h-14 rounded-full flex items-center justify-center right-4 fixed'>
|
||
|
|
<WhatsappLogoIcon className='size-8 text-white' />
|
||
|
|
</a>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default WhatsAppBubble
|