Files
MattrixwvReactComponents/lib/component/tab/MattrixwvTabList.tsx
2026-02-26 21:03:21 -05:00

14 lines
324 B
TypeScript

import type { MattrixwvTabListProps } from "$/types/TabTypes";
import { TabList } from "@headlessui/react";
export default function MattrixwvTabList({
children
}: Readonly<MattrixwvTabListProps>){
return (
<TabList className="flex flex-row items-center justify-start w-full border-b">
{children}
</TabList>
);
}