UNPKG

react18-loaders

Version:

A comprehensive library that unleashes the full potential of React 18 server components, providing customizable loading animation components alongside a fullscreen loader container. Designed to seamlessly integrate with React and Next.js.

14 lines (13 loc) 360 B
import { BaseProps } from "../../common"; interface Dots2Props extends BaseProps { /** Radius of the dots in pixels or a string with a length unit. */ dotRadius?: number | string; } /** * A simple loader with 3 dots. * * @example * <Dots2 /> */ export declare function Dots2(props: Dots2Props): import("react/jsx-runtime").JSX.Element; export {};