import React from "react"; import style from "./spinner.module.css"; interface ISpinnerProps { color?: "gray"; } const Spinner = ({ color = "gray" }: ISpinnerProps) => { return (