mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Most simple components created
This commit is contained in:
18
lib/component/tab/MattrixwvTabList.tsx
Normal file
18
lib/component/tab/MattrixwvTabList.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user