import React from 'react'; import './Spinner.scss'; type Size = 'x1' | 'x2' | 'x3' | 'x4' | 'x5'; interface SpinnerProps { size?: Size; light?: boolean; } const Spinner = ({ size = 'x1', light = false }: SpinnerProps) => { const color = light ? 'Spinner-light' : 'Spinner-dark'; return ( ); }; export default Spinner;