import * as React from 'react' import { ViewStyle } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' import styled from 'styled-components/native' const Wrapper = styled.View` box-shadow: 0 -1px 3px #00000010; background-color: white; height: 60px; padding-vertical: 20px; ` interface Props { style?: ViewStyle, children: any } const BottomWrapper = (props: Props) => { const safeAreaInset = useSafeAreaInsets(); return ( { props.children} ) } export default BottomWrapper