Spaces:
Running
Running
File size: 423 Bytes
63c7991 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import styles from "./loading-dots.module.css";
export default function LoadingDots({
color = "#000",
style = "small",
}: {
color: string;
style: string;
}) {
return (
<span className={style == "small" ? styles.loading2 : styles.loading}>
<span style={{ backgroundColor: color }} />
<span style={{ backgroundColor: color }} />
<span style={{ backgroundColor: color }} />
</span>
);
}
|