UNPKG

react-base-guide

Version:

react ui components

9 lines (8 loc) 307 B
import { InputHTMLAttributes, ReactElement } from "react"; import { StyleProps } from "../../utils/add-custom-style"; interface RadioProps extends InputHTMLAttributes<HTMLInputElement> { label?: ReactElement | string; checked?: boolean; styled?: StyleProps; } export default RadioProps;