import type { RadioButtonProps } from "$/types/InputTypes"; import clsx from "clsx"; import { forwardRef } from "react"; import RadioButton from "./RadioButton"; const PrimaryRadioButton = forwardRef(({ className, ...props }, ref ) => { return ( ); }); PrimaryRadioButton.displayName = "PrimaryRadioButton"; export default PrimaryRadioButton;