UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

8 lines (7 loc) 260 B
/// <reference types="react" /> import type { SwitchProps } from '@mui/material/Switch'; interface SwitchRadioProps extends SwitchProps { label?: string; } export default function SwitchRadio({ label, ...props }: SwitchRadioProps): JSX.Element; export {};