feat: add lume store screen
This commit is contained in:
@@ -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,
|
||||
)}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user