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) => (
)