I'm using react-chips for displaying email into chips "https://www.npmjs.com/package/react-chips". Here my objective is to stretch the chip input field like rows={3} column={20}. but Couldn't able to find how to give in react-chips. Is it possible to stretch the respective field? can anyone help me in this query?
Here is the code:
<Container>
<Modal trigger={<Button>Show Modal</Button>}>
<Modal.Content>
<Form>
<strong>Email</strong>
<Chips
className="f_input"
value={this.state.chips}
onChange={this.onChange}
suggestions={["Your", "Data", "Here"]}
chipTheme={{
chip: {
border: "none",
borderBottom: "1px solid black"
},
chipRemove: {
fontWeight: "bold",
cursor: "pointer",
color: "green",
":hover": {
color: "yellow"
}
}
}}
/>
<Form.Field
transparent
className="f_input"
control={Input}
label="Subject"
/>
<TextArea placeholder="Email Format" />
</Form>
<Button>Send</Button>
</Modal.Content>
</Modal>
</Container>
Can anyone please help me in stretching the chip input field?