import clsx from "clsx"; import { CSSProperties } from "react"; import styles from "./LoadingDots.module.css"; interface Props { /** * Pixel size of Dots; * - defaults to "2px" */ size?: number; } /** * @usage * - `size`: pixel size of dots * ```tsx * * ``` */ const LoadingDots: React.ComponentType> = ({ size = 2, children, }) => { return ( {children &&
{children}
}
); }; export default LoadingDots;