Files
umami/src/components/common/ActionForm.tsx
2025-11-22 22:42:42 -08:00

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>
);
}