import React from 'react'; // import { motion } from 'framer-motion'; // import { LockIcon, UnlockIcon } from 'lucide-react'; import { Label, Button } from '@librechat/client'; import { useLocalize } from '~/hooks'; interface DisableTwoFactorToggleProps { enabled: boolean; onChange: () => void; disabled?: boolean; buttonRef?: React.RefObject; } export const DisableTwoFactorToggle: React.FC = ({ enabled, onChange, disabled, buttonRef, }) => { const localize = useLocalize(); return (
); };