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 352ef50 commit 17f8c07Copy full SHA for 17f8c07
lib/components/index.ts
@@ -28,6 +28,7 @@ export * from './select';
28
export * from './skeleton';
29
export * from './slider';
30
export * from './spacer';
31
+export * from './spinner';
32
export * from './stat';
33
export * from './switch';
34
export * from './tabs';
lib/components/spinner/index.tsx
@@ -0,0 +1,2 @@
1
+export type { SpinnerProps } from './wrapper';
2
+export { Spinner } from './wrapper';
lib/components/spinner/wrapper.tsx
+export type { SpinnerProps } from '@chakra-ui/react';
+export { Spinner } from '@chakra-ui/react';
0 commit comments