We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c8de89 commit 8a25807Copy full SHA for 8a25807
1 file changed
packages/code-studio/src/styleguide/Inputs.tsx
@@ -271,6 +271,24 @@ function Inputs(): React.ReactElement {
271
</Select>
272
</div>
273
274
+ <div className="form-group">
275
+ <Select
276
+ onChange={v => {
277
+ // no-op
278
+ }}
279
+ defaultValue="0"
280
+ className="custom-select"
281
+ isInvalid
282
+ >
283
+ <Option disabled value="0">
284
+ Custom Selection
285
+ </Option>
286
+ <Option value="1">One</Option>
287
+ <Option value="2">Two</Option>
288
+ <Option value="3">Three</Option>
289
+ </Select>
290
+ </div>
291
+
292
<div className="form-group">
293
<h5>Input with Select</h5>
294
<div className="input-group">
0 commit comments