export default function Example() {
  return (
    <Box css={{ display: "flex", flexDirection: "column", gap: "$050" }}>
      <InputTextarea
        helperText={<p>Please keep your message brief</p>}
        label="Label"
      />
    </Box>
  );
}