TeaSpeak-Client/imports/shared-app/ui/react-elements/RadioButton.d.ts

9 lines
263 B
TypeScript
Raw Normal View History

2021-02-20 12:55:36 -05:00
import * as React from "react";
export declare const RadioButton: (props: {
2021-05-01 17:38:36 -04:00
children?: React.ReactNode | string | React.ReactNode[];
2021-02-20 12:55:36 -05:00
name: string;
selected: boolean;
disabled?: boolean;
onChange: (checked: boolean) => void;
}) => JSX.Element;