Repository URL to install this package:
|
Version:
2.7.11 ▾
|
import { ReactNode } from 'react'
// typings file
export type SwitchHandleToggleChange = (isSelected: boolean) => void
export interface SwitchProps {
onToggle: (args: { isSelected: boolean; label: string }) => void
label?: string
className?: string
renderWrap?: (props: any) => ReactNode
isSelected?: boolean
}