mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
type LiveTranscriptionProps = {
|
|
text: string;
|
|
};
|
|
|
|
export default function LiveTrancription(props: LiveTranscriptionProps) {
|
|
return (
|
|
<div className="h-[7svh] w-full bg-gray-800 text-white text-center py-4 text-2xl">
|
|
{props.text}
|
|
</div>
|
|
);
|
|
}
|