mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-25 14:34:19 +00:00
🧹 Reformat code
This commit is contained in:
parent
b707b1fc88
commit
8509d4324c
1 changed files with 14 additions and 2 deletions
|
@ -51,8 +51,20 @@ export default function BoxConditionHashtag({ ...props }) {
|
||||||
return (
|
return (
|
||||||
<BoxFull header={<span>Search by <FontAwesomeIcon icon={faHashtag}/> hashtag</span>} {...props}>
|
<BoxFull header={<span>Search by <FontAwesomeIcon icon={faHashtag}/> hashtag</span>} {...props}>
|
||||||
<FormInline>
|
<FormInline>
|
||||||
<InputWithIcon className={Style.Input} id={"condition-hashtag"} icon={faHashtag} value={hashtag} onChange={onInputChange} placeholder={"hashtag"}/>
|
<InputWithIcon
|
||||||
<ButtonIconOnly className={Style.Button} icon={faPlus} color={"Green"} onClick={onButtonClick}/>
|
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>
|
</FormInline>
|
||||||
</BoxFull>
|
</BoxFull>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue