Updated reports components.

This commit is contained in:
Mike Cao
2025-03-26 21:54:23 -07:00
parent f5bc3dc6c2
commit 0f6cdf8b80
95 changed files with 580 additions and 698 deletions

View File

@@ -0,0 +1,15 @@
import { Row, Column, Text } from '@umami/react-zen';
export function ActionForm({ label, description, children }) {
return (
<Row padding="6" border borderRadius="3" justifyContent="space-between" shadow="2">
<Column>
<Text weight="bold">{label}</Text>
<Text>{description}</Text>
</Column>
<Row gap="3" alignItems="center">
{children}
</Row>
</Row>
);
}