diff --git a/src/components/Radio.tsx b/src/components/Radio.tsx
index 0157cd3..3c2e198 100644
--- a/src/components/Radio.tsx
+++ b/src/components/Radio.tsx
@@ -1,46 +1,41 @@
+import classNames from "classnames";
import React from "react";
-/**
- * [*]This is a Radio component.
- *
- * [*]when you click on the label the radio will be selected
- *
- * [*] when you call this component pass the following:
- * [1]. label
- * [2]. id
- * [3]. name
- *
- * [*] A good example will be:
- *
- */
-type RadioProps = {
+import { ReactComponent as Checkmark } from "assets/svg/check.svg";
+
+export type Props = {
/**
- * the text that will be shown besie the radio
+ * An Element next to the Radio
*/
- label: string;
- /**
- * please provide a unique id
- */
- id: string;
- /**
- * The name of radio element
- */
- name: string;
+ children?: React.ReactNode;
} & Omit, "type">;
-const Radio = ({ label, id, name, ...props }: RadioProps) => {
+const Radio = ({ children, className, ...props }: Props) => {
return (
-