ACE / components /Spinner.tsx
Severian's picture
Upload 27 files
159f9c9 verified
raw
history blame
220 Bytes
import React from 'react';
const Spinner: React.FC = () => {
return (
<div className="w-5 h-5 border-2 border-t-transparent border-white rounded-full animate-spin"></div>
);
};
export default Spinner;