Files
probo/apps/trust/src/components/RowHeader.tsx
Jonathan 55e85e5f67 Add trust center v2
Signed-off-by: Jonathan <contact@grafikart.fr>
2025-09-30 16:23:22 +02:00

10 lines
237 B
TypeScript

import type { PropsWithChildren } from "react";
export function RowHeader({ children }: PropsWithChildren) {
return (
<div className="bg-subtle text-xs font-medium text-txt-tertiary uppercase ">
{children}
</div>
);
}