import React, { forwardRef } from "react"; import { cl } from "../../../utils/helpers"; type RadioInputProps = React.InputHTMLAttributes & { children?: never; standalone?: boolean; /** * Reduces pseudo-element target-size. */ compact?: boolean; }; const RadioInput = forwardRef( ( { className, standalone = true, compact, ...rest }: RadioInputProps, forwardedRef, ) => { return ( ); }, ); export { RadioInput }; export type { RadioInputProps };