UNPKG

@hhgtech/hhg-components

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