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