1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

🧹 Reformat code

This commit is contained in:
Stefano Pigozzi 2021-04-29 16:18:04 +02:00
parent b707b1fc88
commit 8509d4324c
Signed by untrusted user who does not match committer: steffo
GPG key ID: 6965406171929D01

View file

@ -51,8 +51,20 @@ export default function BoxConditionHashtag({ ...props }) {
return (
<BoxFull header={<span>Search by <FontAwesomeIcon icon={faHashtag}/> hashtag</span>} {...props}>
<FormInline>
<InputWithIcon className={Style.Input} id={"condition-hashtag"} icon={faHashtag} value={hashtag} onChange={onInputChange} placeholder={"hashtag"}/>
<ButtonIconOnly className={Style.Button} icon={faPlus} color={"Green"} onClick={onButtonClick}/>
<InputWithIcon
className={Style.Input}
id={"condition-hashtag"}
icon={faHashtag}
value={hashtag}
onChange={onInputChange}
placeholder={"hashtag"}
/>
<ButtonIconOnly
className={Style.Button}
icon={faPlus}
color={"Green"}
onClick={onButtonClick}
/>
</FormInline>
</BoxFull>
)