gemini-coder / components /loading-dots.tsx
osanseviero's picture
Upload 54 files
63c7991 verified
raw
history blame contribute delete
423 Bytes
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>
);
}