mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 13:43:59 -05:00
19 lines
341 B
TypeScript
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>
|
|
);
|
|
}
|