import classNames from "classnames"; import React from "react"; import { ReactComponent as Checkmark } from "assets/svg/check.svg"; export type Props = { /** * An Element next to the Radio */ children?: React.ReactNode; } & Omit, "type">; const Radio = ({ children, className, ...props }: Props) => { return ( ); }; export default Radio;