File size: 426 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
```jsx
<Form.InputGroup append={<Button
        RootComponent="a"
        color="primary"
        href="http://www.google.com"
    >Go!
    </Button>}>
    <Form.Input placeholder="Search for..." />
</Form.InputGroup>
```

```jsx
<Form.InputGroup inputProps={{placeholder: "Search for..."}} append={<Button
        RootComponent="a"
        color="primary"
        href="http://www.google.com"
    >Go!
    </Button>} />
```