Removed Radio.tsx
Some checks failed
armco-org/shared-components/pipeline/head There was a failure building this commit

This commit is contained in:
2025-11-06 02:48:16 +05:30
parent d811d210e9
commit 98b5c1b760

View File

@@ -1,11 +0,0 @@
import { ReactNode } from "react"
import { FormInputProps } from "./types.interface"
import "./Radio.component.scss"
export interface RadioProps extends FormInputProps { }
const Radio = (props: RadioProps): ReactNode => {
return <div className="ar-Radio">In Component Radio</div>
}
export default Radio