import React from "react"; import { cx } from "../../utils"; import { SpinnerProps } from "./types"; export const Spinner: React.FunctionComponent = props => { const { color = "#fff", size = "medium" } = props; const sizeClasses = { small: "w-4 h-4", medium: "w-6 h-6", large: "w-8 h-8", xlarge: "w-12 h-12", }; return (
Loading...
); }; Spinner.displayName = "Spinner"; export type { SpinnerProps };