read all notif

This commit is contained in:
hamid zarghami
2025-12-25 10:18:47 +03:30
parent f84d5156b0
commit f532a1514f
5 changed files with 68 additions and 11 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ interface SearchboxProps
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void
}
export default function SearchBox ({
export default function SearchBox({
className,
value,
placeholder = '',
@@ -29,7 +29,7 @@ export default function SearchBox ({
onChange={onChange}
value={value}
placeholder={placeholder}
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'
className='text-[#8C90A3] pt-1 block outline-none border-none focus:ring-0 focus:outline-none px-[7px] h-full items-center w-full text-xs!'
type='search'
{...props}
/>