UNPKG

@hhgtech/hhg-components

Version:
9 lines (8 loc) 285 B
import React, { ReactNode } from 'react'; import { SwitchProps } from '@mantine/core'; type Props = { label?: string | ReactNode; withAsterisk?: boolean; } & SwitchProps; declare const Switching: ({ label, ...props }: Props) => React.JSX.Element; export { Switching };