Updated theme handling.

This commit is contained in:
Mike Cao 2025-04-01 22:58:38 -05:00
parent c71e9b5707
commit 34a8fa100c
10 changed files with 57 additions and 93 deletions

View file

@ -2,15 +2,5 @@ import { Box } from '@umami/react-zen';
import type { BoxProps } from '@umami/react-zen/Box';
export function Panel(props: BoxProps) {
return (
<Box
padding="6"
border
borderRadius="3"
backgroundColor
shadow="4"
position="relative"
{...props}
/>
);
return <Box padding="6" border borderRadius="3" backgroundColor position="relative" {...props} />;
}