import React from 'react'; type DefaultInputProps = JSX.IntrinsicElements['input']; export interface ToggleProps { label: string; } export const Toggle = React.forwardRef< HTMLInputElement, ToggleProps & DefaultInputProps >(function Input( { label, id, checked, ...props }: ToggleProps & DefaultInputProps, ref, ) { return (