import { radio } from "@hedia/hexui/components/radio";
export default function () {
return [
radio({
checked: true,
description: "This is checked and you can't change it",
disabled: true,
heading: "Disabled checked",
id: "radio-1",
name: "example",
value: "1",
}),
radio({
description: "You can't change to this option",
disabled: true,
heading: "Disabled unchecked",
id: "radio-1",
name: "example",
value: "1",
}),
];
}