feat: add lume store screen

This commit is contained in:
2024-03-19 08:21:16 +07:00
parent 05b52564e0
commit 14f07dfea8
12 changed files with 135 additions and 41 deletions

View File

@@ -3,16 +3,19 @@ import { ReactNode } from "react";
export function ColumnRoot({
children,
shadow = true,
className,
}: {
children: ReactNode;
shadow?: boolean;
className?: string;
}) {
return (
<div className="h-full w-full p-2">
<div
className={cn(
"shadow-primary relative flex h-full w-full flex-col rounded-xl bg-white dark:bg-black",
"relative flex h-full w-full flex-col rounded-xl bg-white dark:bg-black",
shadow ? "shadow-primary" : "",
className,
)}
>