Files
portainer/app/react/components/PageHeader/PageTitle.tsx
T
2026-04-15 14:24:15 +12:00

19 lines
421 B
TypeScript

import { PropsWithChildren } from 'react';
export function PageTitle({
title,
children,
}: PropsWithChildren<{ title: string }>) {
return (
<div className="mb-2 flex items-center gap-2 px-[15px]">
<h1
className="m-0 text-lg font-medium text-gray-11 th-highcontrast:text-white th-dark:text-white"
data-cy="page-title"
>
{title}
</h1>
{children}
</div>
);
}