blob: c6f44e802e0a7c3dbf035f6cf41e4127bfe64778 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { Column, Row, Text } from '@umami/react-zen';
export function ActionForm({ label, description, children }) {
return (
<Row alignItems="center" justifyContent="space-between" gap>
<Column gap="2">
<Text weight="bold">{label}</Text>
<Text color="muted">{description}</Text>
</Column>
<Row alignItems="center" gap>
{children}
</Row>
</Row>
);
}
|