first commit

This commit is contained in:
2025-11-20 19:09:43 +00:00
parent b296fe227e
commit 8284b1dd11
38 changed files with 3043 additions and 0 deletions

21
src/ui/CardHeader.tsx Normal file
View File

@@ -0,0 +1,21 @@
import clsx from "clsx";
type CameraOverviewHeaderProps = {
title?: string;
};
const CardHeader = ({ title }: CameraOverviewHeaderProps) => {
return (
<div
className={clsx(
"w-full border-b border-gray-600 flex flex-row items-center space-x-2 mb-6 relative justify-between",
)}
>
<div className="flex items-center space-x-2">
{/* {icon && <FontAwesomeIcon icon={icon} className="size-4" />} */}
<h2 className="text-xl">{title}</h2>
</div>
</div>
);
};
export default CardHeader;