()
| 94 | } |
| 95 | |
| 96 | export function useIsRTL() { |
| 97 | const { dir } = useContext(ThemeContext); |
| 98 | return dir === 'rtl'; |
| 99 | } |
| 100 | |
| 101 | function createBootstrapComponent(Component, opts) { |
| 102 | if (typeof opts === 'string') opts = { prefix: opts }; |
no outgoing calls
no test coverage detected
searching dependent graphs…