react-code-dataset / tabler-react /src /components /Form /FormInputGroup.examples.md
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
426 Bytes
```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>} />
```