(props: any)
| 1954 | }; |
| 1955 | |
| 1956 | const Example54 = (props: any) => { |
| 1957 | return ( |
| 1958 | <div> |
| 1959 | <InputGroup size="lg"> |
| 1960 | <InputGroupText>@lg</InputGroupText> |
| 1961 | <Input /> |
| 1962 | </InputGroup> |
| 1963 | <br /> |
| 1964 | <InputGroup> |
| 1965 | <InputGroupText>@normal</InputGroupText> |
| 1966 | <Input /> |
| 1967 | </InputGroup> |
| 1968 | <br /> |
| 1969 | <InputGroup size="sm"> |
| 1970 | <InputGroupText>@sm</InputGroupText> |
| 1971 | <Input /> |
| 1972 | </InputGroup> |
| 1973 | </div> |
| 1974 | ); |
| 1975 | }; |
| 1976 | |
| 1977 | const Example55 = (props: any) => { |
| 1978 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…