We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95acde1 commit 54e3f2eCopy full SHA for 54e3f2e
packages/dev/s2-docs/pages/react-aria/Group.mdx
@@ -18,19 +18,19 @@ import {Input} from 'react-aria-components';
18
19
<InputGroup/* PROPS */>
20
<Input
21
- size={3}
+ style={{width: '3ch', boxSizing: 'content-box'}}
22
maxLength={3}
23
aria-label="First 3 digits"
24
placeholder="000" />
25
–
26
27
- size={2}
+ style={{width: '2ch', boxSizing: 'content-box'}}
28
maxLength={2}
29
aria-label="Middle 2 digits"
30
placeholder="00" />
31
32
33
- size={4}
+ style={{width: '4ch', boxSizing: 'content-box'}}
34
maxLength={4}
35
aria-label="Last 4 digits"
36
placeholder="0000" />
0 commit comments