@tuv-indo/radio
v0.0.2
Published
radio component for Tuv UI
Downloads
203
Keywords
Readme
tuv radio
tuv radio is a strict and customizable radio component for web development projects, designed for simplicity and adherence to strict design guidelines.
Screenshots

Package instalation
Instal package using pnpm
pnpm add @tuv/radioInstal package using yarn
yarn add @tuv/radioInstal package using npm
npm i @tuv/radioUsage/Examples
import React from "react";
import {Radio} from "@tuv/radio";
import ReactDOM from "react-dom/client";
const App = () => (
<div>
<h1>Component test</h1>
<Radio label="hello " sizes="sm" />
<Radio label="Hay " sizes="sm" />
</div>
);
ReactDOM.createRoot(document.getElementById("app")!).render(<App />);
Props @tuv/radio
Props that you can pass to <Radio {...props} />
| Prop Name | Value | required | | :-------- | :----------------- | :------- | | size | "sm" / "md" / "lg" | false | | label | string | false |
