import styles from '@/styles/loading-dots.module.css'; const LoadingDots = ({ color = '#000', style = 'small', }: { color: string; style: string; }) => { return ( ); }; export default LoadingDots; LoadingDots.defaultProps = { style: 'small', };