| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { forwardRef, InputHTMLAttributes, ReactNode } from 'react'
- import { cn } from 'ui'
- export interface InputWithAddonsProps extends InputHTMLAttributes<HTMLInputElement> {
- leading?: ReactNode
- trailing?: ReactNode
- containerClassName?: string
- }
- export const InputWithAddons = forwardRef<HTMLInputElement, InputWithAddonsProps>(
- ({ leading, trailing, containerClassName, className, ...props }, ref) => {
- return (
- <div
- className={cn(
- 'group border-input ring-offset-background flex h-10 w-full rounded-sm border bg-transparent text-sm overflow-hidden',
- 'focus-within:ring-ring focus-within:outline-hidden focus-within:ring-2 focus-within:ring-offset-2',
- containerClassName
- )}
- >
- {leading ? (
- <div className="border-input px-2 flex items-center justify-center">{leading}</div>
- ) : null}
- <input
- className={cn(
- 'bg-transparent w-full px-0 py-2 focus:outline-hidden border-0 placeholder:text-foreground-lighter ',
- 'disabled:cursor-not-allowed disabled:opacity-50 text-[0.75rem]',
- className
- )}
- ref={ref}
- {...props}
- />
- {trailing ? (
- <div className="border-input bg-muted/50 border-l px-3 py-2 flex items-center justify-center">
- {trailing}
- </div>
- ) : null}
- </div>
- )
- }
- )
- InputWithAddons.displayName = 'InputWithAddons'
|