mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
6 lines
235 B
TypeScript
6 lines
235 B
TypeScript
import { Box } from '@umami/react-zen';
|
|
import type { BoxProps } from '@umami/react-zen/Box';
|
|
|
|
export function Panel(props: BoxProps) {
|
|
return <Box padding="6" borderSize="1" borderRadius="3" backgroundColor="solid" {...props} />;
|
|
}
|