mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import styles from './loading-ellipsis.module.css';
|
|
|
|
interface LoadingEllipsisProps {
|
|
string: string;
|
|
}
|
|
|
|
const LoadingEllipsis = ({ string }: LoadingEllipsisProps) => {
|
|
return <span className={styles.ellipsis}>{string}</span>;
|
|
};
|
|
|
|
export default LoadingEllipsis;
|