primevue-mirror/api-generator/components/radiobutton.js

23 lines
506 B
JavaScript
Raw Normal View History

2021-05-12 09:35:29 +00:00
const RadioButtonProps = [
{
name: "value",
type: "any",
default: "null",
description: "Value of the checkbox."
},
{
name: "modelValue",
type: "any",
default: "null",
description: "Value binding of the checkbox."
}
];
module.exports = {
radiobutton: {
name: "RadioButton",
description: "RadioButton is an extension to standard radio button element with theming.",
props: RadioButtonProps
}
};