Fixed field parameters.

This commit is contained in:
Mike Cao 2025-03-27 15:33:24 -07:00
parent 0f6cdf8b80
commit 7d2c361725
12 changed files with 90 additions and 88 deletions

View file

@ -2,5 +2,15 @@ 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="solid" shadow="4" {...props} />;
return (
<Box
padding="6"
border
borderRadius="3"
backgroundColor
shadow="4"
position="relative"
{...props}
/>
);
}