smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
17 lines (16 loc) • 536 B
TypeScript
import React from "react";
import { SizeProps } from "../props/size-props";
import { JSXElementProps, JSXChild, Value, SetValue } from "../props";
export interface Props extends SizeProps {
containerProps?: JSXElementProps;
inputProps?: JSXElementProps;
spanProps?: JSXElementProps;
children?: JSXChild;
type?: string;
fill?: boolean;
value: Value | boolean;
active: Value | boolean;
setActive: SetValue<Value | boolean>;
}
declare const Radio: React.FC<Props>;
export default Radio;