Files
MattrixwvReactComponents/lib/component/tab/MattrixwvTabList.tsx

19 lines
341 B
TypeScript

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