release 0.3.4
This commit is contained in:
13
apps/web/ui/shared/icons/loading-dots.tsx
Normal file
13
apps/web/ui/shared/icons/loading-dots.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
Reference in New Issue
Block a user