import { Typography } from "@/components/ui"; import styles from "./MessageMeta.module.scss"; interface MessageMetaProps { time: string; children?: React.ReactNode; } export default function MessageMeta({ time, children }: MessageMetaProps) { return (