Anduin Design
Components

Drawer

Drawers slide in from a container to expose additional options and information.

DrawerR(  renderTarget = open => {    Button(      style = _.Full(),      onClick = open    )("Open")  },  renderContent = renderProps => {    <.div(      tw.flex.itemsCenter.justifyCenter.hFull,      Button(        style = _.Full(color = _.Primary),        onClick = renderProps.onClose      )("Close")    )  })()