Button placement next to Input field with Mantine React

I am trying to place a button next to an input field in react using the Mantine library. My input field looks like this (with styling): const useStyles = createStyles((theme, { opened }: { opened: boolean }) => ({ control: { display: "flex", justifyContent: "space-between", alignItems: "center", padding: `${theme.spacing.xs} ${theme.spacing.md}`, borderRadius: theme.radius.md, border: `${rem(1)} solid… Read More Button placement next to Input field with Mantine React