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:
parent
b707b1fc88
commit
8509d4324c
1 changed files with 14 additions and 2 deletions
|
@ -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>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue