aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/common/Spinner.tsx
blob: 783c9be20019a7d3e7e08b78e30c22f3cc01e8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { PaletteColorType } from "@/palette";
import React from "react";

export interface SpinnerProps {
  size?: "sm" | "md" | "lg" | number;
  color?: PaletteColorType;
}

export default function Spinner(
  props: SpinnerProps
): React.ReactElement | null {
  return <span />;
}