import React, { InputHTMLAttributes, forwardRef } from "react";
import classNames from "classnames";
import { Field, FieldProps } from ":/components/Forms/Field";
type Props = InputHTMLAttributes &
FieldProps & {
label?: string;
labelSide?: "left" | "right";
};
export const Switch = forwardRef(
(
{ label, text, state, fullWidth, labelSide = "left", ...props }: Props,
ref,
) => {
return (
);
},
);