/* * SPDX-FileCopyrightText: 2020 Stalwart Labs LLC * SPDX-FileCopyrightText: 2026 Coffey Labs * * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-SEL * * Modified by Coffey Labs in 2026 for INBUXA. */ import * as React from 'react'; import { cn } from '@/lib/utils'; const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { return ( ); }, ); Input.displayName = 'Input'; export { Input };