import * as React from 'react' import Svg, { Circle, ClipPath, Defs, G, Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' interface Props { size?: number backgroundColor?: ColorValue color?: ColorValue } function CrossChainIndicator({ size = 16, backgroundColor = Colors.contentPrimary, color = Colors.backgroundPrimary, }: Props) { return ( ) } export default CrossChainIndicator