Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <div className={cn(["sidebar_main__section__choice", "row-sb-c", {"showing": shouldShow, "urlActive": urlActiveChild === child.hrefId}])}>
  2. <div className="sidebar_main__section__choice__left row-fs-c">
  3. <SectionChildIcon child={child} label={label} unreads={unreads} urlActiveChild={urlActiveChild} />
  4. <span>{child.text}</span>
  5. </div>
  6. {!!child.online ? <div className="sidebar_main__section__choice__onlineIndicator row-fe-c"></div> : null}
  7. {!!child.external ? <img src="/arrow.svg" /> : null}
  8. </div>
  9.  
  10.  
  11. _____
  12.  
  13.  
  14. <div className={cn(["choice", "row-sb-c", {"showing": shouldShow, "urlActive": urlActiveChild === child.hrefId}])}>
  15. <div className="left row-fs-c">
  16. <SectionChildIcon child={child} label={label} unreads={unreads} urlActiveChild={urlActiveChild} />
  17. <span>{child.text}</span>
  18. </div>
  19. {!!child.online ? <div className="onlineIndicator row-fe-c"></div> : null}
  20. {!!child.external ? <img src="/arrow.svg" /> : null}
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement