diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts
index b1c0800..3deff50 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.ts
@@ -69,6 +69,7 @@ function getFormComponents() {
{ text: 'Select', link: 'components/select' },
{ text: 'Toggle', link: 'components/toggle' },
{ text: 'Range', link: 'components/range' },
+ { text: 'Radio', link: 'components/radio' },
]
}
diff --git a/docs/components/radio.md b/docs/components/radio.md
new file mode 100644
index 0000000..6e1118d
--- /dev/null
+++ b/docs/components/radio.md
@@ -0,0 +1,132 @@
+
+
+# Vue Toggle Radio - Flowbite
+
+#### Get started with the radio component to let the user choose a single option from multiple options in the form of a circle based on multiple styles and colors
+
+---
+
+:::tip
+Original reference: [https://flowbite.com/docs/forms/range/](https://flowbite.com/docs/forms/radio/)
+:::
+
+## Radio examples
+
+```vue
+
+
+
+
+
+
+
+
+```
+
+
+
+## Disabled Radio
+
+```vue
+
+
+
+
+
+
+```
+
+
+
+## Radio list group
+
+```vue
+
+
+
Technology {{ picked }}
+
+
+
+
+
+
+
+
+```
+
+
+
+## Horizontal list group
+
+```vue
+
+
+
Technology {{ picked1 }}
+
+
+
+
+
+
+
+
+```
+
+
+
+## Inline Radio
+
+```vue
+
+
+
+
+
+
+
+
+```
+
+
+
+## Radio with a link
+
+```vue
+
+
+ I agree with the terms and conditions.
+
+
+```
+
+
+
+## Bordered Radio
+
+```vue
+
+
+
+
+
+
+
+
+
+
+```
+
+
\ No newline at end of file
diff --git a/docs/components/radio/examples/BorderedRadio.vue b/docs/components/radio/examples/BorderedRadio.vue
new file mode 100644
index 0000000..b398d51
--- /dev/null
+++ b/docs/components/radio/examples/BorderedRadio.vue
@@ -0,0 +1,17 @@
+
+