UNPKG

@hypernetlabs/web-ui

Version:
10 lines 415 B
import React from "react"; import { SwitchProps } from "@material-ui/core"; declare type MuiSwitchPropsExtacted = Omit<SwitchProps, "onChange">; export interface GovernanceSwitchProps extends MuiSwitchPropsExtacted { initialValue: boolean; onChange: (value: boolean) => void; } export declare const GovernanceSwitch: React.FC<GovernanceSwitchProps>; export {}; //# sourceMappingURL=GovernanceSwitch.d.ts.map