Mhermank

Untitled

Mar 1st, 2021
796
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div className={styles.row}>
  2.                 <span className={styles.identifiers}>
  3.                   {getPatientIdentifiers()}
  4.                 </span>
  5.                 <Button
  6.                   kind="ghost"
  7.                   renderIcon={OverflowMenu}
  8.                   iconDescription="show action details"
  9.                   onClick={showActionDetails}
  10.                 >
  11.                   Actions
  12.                 </Button>
  13.                 <Button
  14.                   kind="ghost"
  15.                   renderIcon={showContactDetails ? CaretUp16 : CaretDown16}
  16.                   iconDescription="Toggle contact details"
  17.                   onClick={toggleContactDetails}
  18.                 >
  19.                   {showContactDetails
  20.                     ? "Hide Contact Details"
  21.                     : "Show Contact Details"}
  22.                 </Button>
  23.               </div>
  24.             </div>
Advertisement
Add Comment
Please, Sign In to add comment