react-data-table-tailwind
Version:
A simple data table component for React with TailwindCSS
5 lines (4 loc) • 304 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
export default function Spinner({ dark = false }) {
return (_jsx("div", { className: "flex justify-center items-center h-64", children: _jsx("div", { className: "loader ease-linear rounded-full border-4 border-t-4 border-gray-200 h-12 w-12" }) }));
}