fix: text placement

This commit is contained in:
Mahyar Khanbolooki
2025-08-21 21:09:57 +03:30
parent d621d59b8b
commit f6eda0a032
+26 -17
View File
@@ -1,29 +1,38 @@
'use client';
'use client'
import React from 'react';
import SearchIcon from '../icons/SearchIcon';
import clsx from 'clsx';
import React from 'react'
import SearchIcon from '../icons/SearchIcon'
import clsx from 'clsx'
interface SearchboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'results'> {
placeholder?: string;
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
};
interface SearchboxProps
extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'results'> {
placeholder?: string
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void
}
export default function SearchBox({ className, value, placeholder = '', onChange, ...props }: SearchboxProps) {
export default function SearchBox ({
className,
value,
placeholder = '',
onChange,
...props
}: SearchboxProps) {
return (
<div className={clsx(
"bg-container inline-flex rounded-xl px-4 h-10 w-full items-center content-center",
className
)}>
<SearchIcon stroke="#8C90A3" />
<div
className={clsx(
'bg-container inline-flex rounded-xl px-4 h-10 w-full items-center content-center',
className
)}
>
<SearchIcon stroke='#8C90A3' />
<input
onChange={onChange}
value={value}
placeholder={placeholder}
className="text-[#8C90A3] block outline-none border-none focus:ring-0 focus:outline-none text-sm px-[7px] h-full items-center w-full"
type="search"
className='text-[#8C90A3] pt-1 block outline-none border-none focus:ring-0 focus:outline-none text-sm px-[7px] h-full items-center w-full'
type='search'
{...props}
/>
</div>
);
)
}