Skip to content

Improve rounding parameters for IPDropdown

Change IPDropdown parameters from "roundedL" and "roundedR" to "corneredL" and "corneredR". Since they are boolean attributes, they should be false by default, so that we can put them into the HTML code without any value assignment like this:

<html rounded-l>

Nonetheless, the Dropdown should be working as a stand-alone component with rounded edges out of the box, so we need

{
  corneredL: false,
  corneredR: false
}

as props.