import type { FC } from "react"; import { ThreadListItemPrimitive, ThreadListPrimitive, } from "@assistant-ui/react"; import { ArchiveIcon, PlusIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import { TooltipIconButton } from "@/components/assistant-ui/tooltip-icon-button"; export const ThreadList: FC = () => { return ( ); }; const ThreadListNew: FC = () => { return ( ); }; const ThreadListItems: FC = () => { return ; }; const ThreadListItem: FC = () => { return ( ); }; const ThreadListItemTitle: FC = () => { return (

); }; const ThreadListItemArchive: FC = () => { return ( ); };