w-lab-app/src/components/domains/chat/ChatListHeader/ChatListHeader.tsx
gofnnp 23e6031b19 AW-487-chats
chats
2025-07-26 20:21:59 +04:00

19 lines
497 B
TypeScript

import { useTranslations } from "next-intl";
import { SearchInput, Typography } from "@/components/ui";
import styles from "./ChatListHeader.module.scss";
export default function ChatListHeader() {
const t = useTranslations("Chat");
return (
<header className={styles.header}>
<Typography as="h1" size="2xl" weight="bold">
{t("header.title")}
</Typography>
{/* <Input */}
<SearchInput placeholder={t("header.search_placeholder")} />
</header>
);
}