webapp/src/components/_shared/Loading.tsx

18 lines
321 B
TypeScript
Raw Normal View History

2022-10-19 14:26:49 +00:00
import styles from './Loading.module.scss'
import { clsx } from 'clsx'
2022-10-19 14:26:49 +00:00
type Props = {
size?: 'small'
}
export const Loading = (props: Props) => {
2022-10-19 14:26:49 +00:00
return (
<div
class={clsx(styles.container, {
[styles.small]: props.size === 'small'
})}
>
2022-10-19 14:26:49 +00:00
<div class={styles.icon} />
</div>
)
}