import * as React from 'react' import { StyleSheet, View, ViewStyle } from 'react-native' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' import globalStyles from 'src/styles/styles' const SIZE = 24 interface Props { style?: ViewStyle } export default function CircleArrowIcon({ style }: Props) { return ( ) } const styles = StyleSheet.create({ container: { ...globalStyles.softShadowLight, backgroundColor: colors.backgroundPrimary, width: SIZE, height: SIZE, borderRadius: SIZE / 2, alignItems: 'center', justifyContent: 'center', }, })