mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 13:43:59 -05:00
19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
import type { MattrixwvTabPanelProps } from "$/types/Tab";
|
|
import { TabPanel } from "@headlessui/react";
|
|
|
|
|
|
export default function MattrixwvTabPanel(props: MattrixwvTabPanelProps){
|
|
const {
|
|
children
|
|
} = props;
|
|
|
|
|
|
return (
|
|
<TabPanel
|
|
className="flex flex-row items-start justify-center w-full h-full"
|
|
>
|
|
{children}
|
|
</TabPanel>
|
|
);
|
|
}
|