Docs Menu

Radio Inputs

Radio Inputs have the following properties:

Property Required? Type Options Description
checked no bool
  • false (default)
  • true
Radio Input checked by default
id no str Value of the id attribute for the Radio Input.
name yes string Required. Value of the input attribute by default.
type no bool
  • null (default)
  • warning
  • success
  • info
  • notice
The color theme of the Radio Input.

Basic Examples
Basic Radio Input example.

            
1<x-fcui-radio-input id="radioOne" name="r1">
2 Radio Label Here
3</x-fcui-radio-input>
4 
5<x-fcui-radio-input id="radioTwo" name="r1">
6 Radio Label 2 Here
7</x-fcui-radio-input>