import * as React from "react"; interface ControlElementProps { title?: string; children?: React.ReactNode; alignment?: 'start'|'center'|'end'; } const ControlElement = ({title, children, alignment = 'start'}: ControlElementProps) => { return (