websync / components /alert /BufferAlert.tsx
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
import { FC } from "react"
import Alert, { AlertProps } from "./Alert"
import styles from "./Loading.module.css"
import classNames from "classnames"
const BufferAlert: FC<AlertProps> = ({ className, canClose }) => {
return (
<Alert
className={classNames("cursor-progress", className)}
canClose={canClose}
>
<div className={styles.loading}>Buffering ...</div>
</Alert>
)
}
export default BufferAlert