Files
eva/apps/dashboard/src/components/tile.tsx
kenneth 1a2bea01d1
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m9s
feat(dashboard): implement light scenes
2025-10-30 02:49:17 +00:00

15 lines
315 B
TypeScript

import cn from "./lib/cn"
export function Tile({ children, className }: { children?: React.ReactNode; className?: string }) {
return (
<div
className={cn(
"relative rounded-xl bg-neutral-200 dark:bg-neutral-900 flex flex-col justify-end items-start",
className,
)}
>
{children}
</div>
)
}