UNPKG

@vlinderclimate/net-zero-ui

Version:

<div align="center"> <img src="https://storage.yandexcloud.net/static.vlinderstorage.com/Telegram_VlinderTech.png" width=200 /> </div> <h1 align="center">Net Zero UI kit</h1>

15 lines (14 loc) 346 B
import type { FC } from "react"; import { RadioProps as MuiRadioProps } from "@mui/material/Radio"; /** * Types */ export interface RadioProps extends Omit<MuiRadioProps, "children"> { variant?: "default" | "bordered"; className?: string; } /** * Components */ declare const Radio: FC<RadioProps>; export default Radio;