@apolitical/component-library 2.1.1 → 2.1.2-ac.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@ export * from './buttons';
2
2
  export * from './divider';
3
3
  export * from './image-container';
4
4
  export * from './link';
5
+ export * from './navigation-dots';
5
6
  export * from './responsive-image';
6
7
  export * from './return-to-nav-button';
7
8
  export * from './tooltip';
@@ -0,0 +1 @@
1
+ export { default as NavigationDots } from './navigation-dots';
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ interface Props {
3
+ /** The current step */
4
+ currentStep?: number;
5
+ /** The total number of steps */
6
+ steps?: number;
7
+ }
8
+ declare const NavigationDots: React.FC<Props>;
9
+ export default NavigationDots;