16 lines
411 B
TypeScript
16 lines
411 B
TypeScript
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>
|
|
);
|
|
}
|