import { type ComponentPropsWithoutRef, type FC, useId } from 'react' import styles from './Spinner.module.css' type SVGProps = ComponentPropsWithoutRef<'svg'> const SVG: FC = (props) => { const firstHalfId = useId() const secondHalfId = useId() return ( ...Loading ) } type Props = { size?: '12' | '14' | '16' } export const Spinner: FC = ({ size = '16' }) => { return ( ) }