Build, Test, and Push CFDM Docker Image / test (push) Successful in 3m55s
Build, Test, and Push CFDM Docker Image / build-and-push (push) Successful in 2m14s
Build, Test, and Push CFDM Docker Image / update-wiki (push) Successful in 7s
Build, Test, and Push CFDM Docker Image / create-release (push) Has been skipped
10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
import type { ComponentProps } from 'react'
|
|
import { Input } from '@cfdm/ui/components/input'
|
|
import { cn } from '@cfdm/ui/lib/utils'
|
|
|
|
export type AppInputProps = ComponentProps<typeof Input>
|
|
|
|
export function AppInput({ className, ...props }: AppInputProps) {
|
|
return <Input className={cn(className)} {...props} />
|
|
}
|