You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/NavTabs/NavContainer.tsx

18 lines
445 B

import clsx from 'clsx';
import { PropsWithChildren } from 'react';
export function NavContainer({ children }: PropsWithChildren<unknown>) {
return (
<div
className={clsx(
'rounded-lg border border-solid p-2',
'border-gray-5 bg-gray-2',
'th-dark:border-gray-neutral-8 th-dark:bg-gray-iron-10',
'th-highcontrast:border-white th-highcontrast:bg-black'
)}
>
{children}
</div>
);
}