(props)
| 2 | import { Spinner } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <> |
| 7 | <Spinner color="primary" style={{ width: '3rem', height: '3rem' }} /> |
| 8 | <Spinner |
| 9 | type="grow" |
| 10 | color="primary" |
| 11 | style={{ width: '3rem', height: '3rem' }} |
| 12 | /> |
| 13 | </> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default Example; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…