The containerHeight was previously hardcoded to 40, meaning that inputHeight prop was not actually useful if you wanted to go taller than 40.
This pull request changes the height of both the Container and the Input to respect the passed inputHeight prop, which also fixes issue #31 . The existing default of 30 for Input Height is maintained, along with the Container height of 40 via the formula inputHeight + 10 set in the Stylesheet
The
containerHeight
was previously hardcoded to40
, meaning thatinputHeight
prop was not actually useful if you wanted to go taller than 40.This pull request changes the height of both the Container and the Input to respect the passed
inputHeight
prop, which also fixes issue #31 . The existing default of30
for Input Height is maintained, along with the Container height of40
via the formulainputHeight + 10
set in the Stylesheet