siinghd / question-tracker

17 stars 8 forks source link

📦 NEW: add loading spinner and fix post card ui #32

Closed thatbeautifuldream closed 6 months ago

thatbeautifuldream commented 6 months ago

Update post meta data below username

Screenshot 2024-01-05 at 11 12 36 PM

Add helper LoadingSpinner UI Component for loading states

export interface ISVGProps extends React.SVGProps<SVGSVGElement> {
  size?: number;
  className?: string;
}

export const LoadingSpinner = ({ size = 24, className, ...props }: ISVGProps) => {
  <svg
      xmlns="http://www.w3.org/2000/svg"
      width={size}
      height={size}
      {...props}
      viewBox="0 0 24 24"
      fill="none"
      stroke="currentColor"
      strokeWidth="2"
      strokeLinecap="round"
      strokeLinejoin="round"
      className={cn("animate-spin", className)}
    >
      <path d="M21 12a9 9 0 1 1-6.219-8.56" />
    </svg>
}