Files
sage-home/components/icons/loading-dots.tsx

14 lines
363 B
TypeScript
Raw Normal View History

2026-01-24 16:54:44 +08:00
import styles from "./loading-dots.module.css";
const LoadingDots = ({ color = "#000" }: { color?: string }) => {
return (
<span className={styles.loading}>
<span style={{ backgroundColor: color }} />
<span style={{ backgroundColor: color }} />
<span style={{ backgroundColor: color }} />
</span>
);
};
export default LoadingDots;