import { Typography } from "@/components/ui"; import { ViewAll, ViewAllProps } from ".."; import styles from "./ChatItemsListHeader.module.scss"; interface ChatItemsListHeaderProps { title: string; viewAllProps: ViewAllProps; isVisibleViewAll?: boolean; } export default function ChatItemsListHeader({ title, viewAllProps, isVisibleViewAll = true, }: ChatItemsListHeaderProps) { return (