import styled from '@emotion/native'; import { View } from 'react-native'; import type { ViewProps } from 'react-native'; const StyledPickerWrapper = styled(View)(({ theme }) => ({ height: theme.__hd__.datePicker.sizes.height, alignItems: 'center', })); export { StyledPickerWrapper };