AIvoices/frontend-nextjs/app/components/LandingPage/Emoji.tsx
2025-04-08 14:05:27 +01:00

16 lines
No EOL
336 B
TypeScript

"use client"
import Twemoji from "react-twemoji";
export const Emoji = ({ emoji }: { emoji: string }) => {
return (
<div className="flex flex-row items-center justify-center w-10 h-10">
<Twemoji options={{
className: "twemoji flex-shrink-0",
style: { fontSize: `${10}px` }
}}>
{emoji}
</Twemoji>
</div>
)
}