/// import { SvgProps, NumberProp } from "react-native-svg"; interface Props extends SvgProps { size?: NumberProp; } declare const IconArrowBigRightLines: ({ size, ...props }: Props) => JSX.Element; export default IconArrowBigRightLines;