import Svg, { Path } from "react-native-svg"; import { IOColors } from "../../core"; export const LeftArrow = ({ color = IOColors.white }: { color?: string }) => ( ); export const RightArrow = ({ color = IOColors.white }: { color?: string }) => ( ); export const BottomArrow = ({ color = IOColors.white }: { color?: string }) => ( ); export const TopArrow = ({ color = IOColors.white }: { color?: string }) => ( );