@material-ui/core
Version:
React components that implement Google's Material Design.
44 lines (40 loc) • 1.2 kB
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
import { SwitchBaseProps, SwitchBaseClassKey } from '../internal/SwitchBase';
export interface RadioProps
extends StandardProps<SwitchBaseProps, RadioClassKey, 'checkedIcon' | 'color' | 'icon' | 'type'> {
/**
* The icon to display when the component is checked.
*/
checkedIcon?: React.ReactNode;
/**
* The color of the component. It supports those theme colors that make sense for this component.
*/
color?: 'primary' | 'secondary' | 'default';
/**
* If `true`, the radio will be disabled.
*/
disabled?: boolean;
/**
* The icon to display when the component is unchecked.
*/
icon?: React.ReactNode;
/**
* The size of the radio.
* `small` is equivalent to the dense radio styling.
*/
size?: 'small' | 'medium';
}
export type RadioClassKey = SwitchBaseClassKey | 'colorPrimary' | 'colorSecondary';
/**
*
* Demos:
*
* - [Radio Buttons](https://mui.com/components/radio-buttons/)
*
* API:
*
* - [Radio API](https://mui.com/api/radio/)
* - inherits [IconButton API](https://mui.com/api/icon-button/)
*/
export default function Radio(props: RadioProps): JSX.Element;