librqbit 8.1.1

The main library used by rqbit torrent client. The binary is just a small wrapper on top of it.
Documentation
import { ReactNode } from "react";

export const Fieldset = ({
  children,
  label,
  help,
  className,
}: {
  children: ReactNode;
  label?: string;
  help?: string;
  className?: string;
}) => {
  return (
    <fieldset className={`mb-4 ${className}`}>
      {label && (
        <label className="text-md font-md mb-3 block pb-1 border-b">
          {label}
        </label>
      )}
      {children}
    </fieldset>
  );
};