We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f11c51f + 0afadbf commit fb9b3bfCopy full SHA for fb9b3bf
docs/examples/InputAddons.js
@@ -5,6 +5,8 @@ const innerDropdown = (
5
<MenuItem key='1'>Item</MenuItem>
6
</DropdownButton>
7
);
8
+const innerRadio = <input type='radio' aria-label='...' />;
9
+const innerCheckbox = <input type='checkbox' aria-label='...' />;
10
11
const inputAddonsInstance = (
12
<form>
@@ -14,6 +16,8 @@ const inputAddonsInstance = (
14
16
<Input type='text' addonAfter={innerGlyphicon} />
15
17
<Input type='text' buttonBefore={innerButton} />
18
<Input type='text' buttonAfter={innerDropdown} />
19
+ <Input type='text' addonBefore={innerRadio} />
20
+ <Input type='text' addonBefore={innerCheckbox} />
21
</form>
22
23
0 commit comments