import React from "react"; type Props = { className?: string; color: string; size: string; }; const Loader = (props: Props) => { return ( ); }; export default Loader;