Files
Docker/Downloads/Voltaserve/ui/src/lib/components/section-spinner.tsx
2024-04-21 14:42:52 +02:00

20 lines
448 B
TypeScript

import cx from 'classnames'
import { Spinner } from './spinner'
type SectionSpinnerProps = {
width?: string
height?: string
}
const DEFAULT_WIDTH = '100%'
const DEFAULT_HEIGHT = '300px'
export const SectionSpinner = ({ width, height }: SectionSpinnerProps) => (
<div
className={cx('flex', 'items-center', 'justify-center')}
style={{ width: width || DEFAULT_WIDTH, height: height || DEFAULT_HEIGHT }}
>
<Spinner />
</div>
)