react18-tools/turborepo-template

View on GitHub
lib/src/server/dots/dots1/dots1.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import styles from "./dots1.module.scss";
import { Base, BaseProps } from "../../common";

/**
 * A simple loader with 3 dots.
 *
 * @example
 * <Dots1 />
 *
 * @source
 */
export function Dots1(props: BaseProps) {
  return <Base {...props} loaderClass={styles.loader} />;
}