mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import React from "react";
|
|
import clsx from "clsx";
|
|
|
|
export default function CommonTabItem({ children, hidden, className }) {
|
|
return (
|
|
<div role="tabpanel" className={clsx(className)} {...{ hidden }}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|