diff --git a/components/lib/radiobutton/BaseRadioButton.vue b/components/lib/radiobutton/BaseRadioButton.vue
new file mode 100644
index 000000000..e944f4112
--- /dev/null
+++ b/components/lib/radiobutton/BaseRadioButton.vue
@@ -0,0 +1,112 @@
+
diff --git a/components/lib/radiobutton/RadioButton.d.ts b/components/lib/radiobutton/RadioButton.d.ts
index 22b13b872..591f5462f 100755
--- a/components/lib/radiobutton/RadioButton.d.ts
+++ b/components/lib/radiobutton/RadioButton.d.ts
@@ -110,6 +110,16 @@ export interface RadioButtonProps {
* Establishes a string value that labels the component.
*/
'aria-label'?: string | undefined;
+ /**
+ * Uses to pass attributes to DOM elements inside the component.
+ * @type {RadioButtonPassThroughMethodOptions}
+ */
+ pt?: RadioButtonPassThroughMethodOptions;
+ /**
+ * When enabled, it removes component related styles in the core.
+ * @defaultValue false
+ */
+ unstyled?: boolean;
}
export interface RadioButtonSlots {}
diff --git a/components/lib/radiobutton/RadioButton.vue b/components/lib/radiobutton/RadioButton.vue
index 6eddfab2e..868e6186b 100755
--- a/components/lib/radiobutton/RadioButton.vue
+++ b/components/lib/radiobutton/RadioButton.vue
@@ -1,73 +1,22 @@
-