File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import styles from "./loader-container.module.scss";
22import { useRGS } from "r18gs" ;
33import { LOADER_RGS_KEY } from "../../constants" ;
44
5- interface LoaderContainerProps extends React . HTMLProps < HTMLDivElement > {
5+ export interface LoaderContainerProps extends React . HTMLProps < HTMLDivElement > {
66 children ?: React . ReactNode ;
77 loading ?: boolean ;
88}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export interface BaseProps extends HTMLProps<HTMLDivElement> {
1111}
1212
1313/** Other props - loaderClass is included here as we will extend BaseProps for other loaders */
14- interface OtherProps {
14+ export interface OtherProps {
1515 /** Loader class name */
1616 loaderClass : string ;
1717 dotRadius ?: number | string ;
Original file line number Diff line number Diff line change 11import styles from "./dots2.module.scss" ;
22import { Base , BaseProps } from "../../common" ;
33
4- interface Dots2Props extends BaseProps {
4+ export interface Dots2Props extends BaseProps {
55 /** Radius of the dots in pixels or a string with a length unit. */
66 dotRadius ?: number | string ;
77}
You can’t perform that action at this time.
0 commit comments