mirror of https://github.com/portainer/portainer
30 lines
565 B
TypeScript
30 lines
565 B
TypeScript
import clsx from 'clsx';
|
|
import { ReactNode } from 'react';
|
|
|
|
interface Props {
|
|
children?: ReactNode;
|
|
label: string;
|
|
colClassName?: string;
|
|
className?: string;
|
|
}
|
|
|
|
export function DetailsRow({
|
|
label,
|
|
children,
|
|
colClassName,
|
|
className,
|
|
}: Props) {
|
|
return (
|
|
<tr className={className}>
|
|
<td className={clsx(colClassName, 'min-w-[150px] !break-normal')}>
|
|
{label}
|
|
</td>
|
|
{!!children && (
|
|
<td className={colClassName} data-cy={`detailsTable-${label}Value`}>
|
|
{children}
|
|
</td>
|
|
)}
|
|
</tr>
|
|
);
|
|
}
|