import { keyframes } from '@stitches/react' import { Box } from 'components/primitives' import { CSS } from '@stitches/react' import { FC } from 'react' export const spin = keyframes({ '0%': { transform: 'rotate(0deg)' }, '100%': { transform: 'rotate(360deg)' }, }) type Props = { css?: CSS } const LoadingSpinner: FC = ({ css }) => { return ( ) } export default LoadingSpinner