UNPKG

razor-shared-library

Version:
10 lines (9 loc) 379 B
import { ReactElement } from 'react'; import { SwitchProps } from '@mui/material/Switch'; import { StandardLabelPlacement } from '../../../../../../../../src/shared/types'; interface Props { label?: string; labelPlacement?: StandardLabelPlacement; } export declare function SwitchCustom({ label, labelPlacement, ...props }: Props & SwitchProps): ReactElement; export {};