2025-03-14 11:31:47 +02:00
|
|
|
import { Component } from 'solid-js'
|
|
|
|
|
|
|
|
|
|
import styles from './spinner.module.css'
|
2024-01-19 20:32:20 +02:00
|
|
|
|
|
|
|
|
export const LoadingSpinner: Component<{ text: string; }> = ({ text }) => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
2025-03-14 11:31:47 +02:00
|
|
|
<span class={styles.spinner}></span>
|
2024-01-19 20:32:20 +02:00
|
|
|
<span style={{ "padding-left": "16px" }}>{ text }</span>
|
|
|
|
|
</div>
|
2025-03-14 11:31:47 +02:00
|
|
|
)
|
2024-01-19 20:32:20 +02:00
|
|
|
}
|