Would be nice if this component would accept either a button or an array of buttons, so it could be used like:
<BottomSheet buttons={{ title: i18n.t('Upload all'), onPress: onUpload }} />
instead of currently:
<BottomSheet
buttons={[
{
title: i18n.t('Upload all'),
onPress: onUpload,
},
]}
/>