import * as RadixTabs from "@radix-ui/react-tabs"; import { SidebarTabName } from "../../types"; export const SidebarTab = ({ tab, children, ...rest }: { tab: SidebarTabName; children: React.ReactNode; } & React.HTMLAttributes) => { return ( {children} ); }; SidebarTab.displayName = "SidebarTab";