Given a list of strings, write a function to return a new list containing the strings that have the same length as the first string in the input list.
['apple', 'banana', 'kiwi', 'pear', 'orange']
['kiwi', 'pear']
Bot