import React from 'react' export default function FaqSearchInput({ value, onChange, onClear, resultCount }) { return (
onChange(event.target.value)} placeholder="Search roles, invites, contributor credit, review, troubleshooting..." className="w-full rounded-[20px] border border-white/10 bg-white/[0.04] py-3 pl-11 pr-4 text-sm text-white outline-none placeholder:text-slate-500" />
{value ? ( ) : null}

{resultCount} question{resultCount === 1 ? '' : 's'} visible

) }