feat(dashboard): implement light scenes
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m9s
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m9s
This commit is contained in:
14
apps/dashboard/src/components/tile.tsx
Normal file
14
apps/dashboard/src/components/tile.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user