import * as React from 'react' import { StyleSheet, View } from 'react-native' import { Line, Svg } from 'react-native-svg' import { default as Colors, default as colors } from 'src/styles/colors' import globalStyles from 'src/styles/styles' function HamburgerCard() { return ( ) } const styles = StyleSheet.create({ container: { backgroundColor: colors.backgroundPrimary, ...globalStyles.softShadowLight, alignItems: 'center', justifyContent: 'center', borderRadius: 4, height: 32, width: 32, }, }) export default React.memo(HamburgerCard)