UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

10 lines (8 loc) 246 B
type IFuncOnChange = (index: number) => void export type SwitchButtonProps = { index?: number, onChange?: IFuncOnChange, selected?: number }; declare const SwitchButton: React.ComponentType<SwitchButtonProps>; export default SwitchButton;