import React from 'react';
import { Path, Svg } from 'react-native-svg';

export const ArrowUpDiagonal: React.FC = () => {
    return (
        <Svg width="12" height="12" viewBox="0 0 12 12" fill="none">
            <Path
                d="M9.10246 2.00488C9.22962 2.01784 9.34941 2.05523 9.45793 2.11133C9.4675 2.11626 9.47681 2.12169 9.48625 2.12695C9.56347 2.1701 9.63432 2.22288 9.69719 2.28418C9.70031 2.28722 9.70387 2.28988 9.70696 2.29297C9.70973 2.29574 9.71204 2.29896 9.71477 2.30176C9.77742 2.36595 9.83123 2.43845 9.87492 2.51758C9.87895 2.52487 9.88379 2.5317 9.88762 2.53906C9.89835 2.5597 9.90761 2.58109 9.91692 2.60254C9.93368 2.64124 9.94825 2.68058 9.95989 2.7207C9.98563 2.80939 9.99992 2.90303 9.99992 3V8C9.99992 8.55226 9.55217 8.99996 8.99992 9C8.44764 9 7.99992 8.55228 7.99992 8V5.41406L3.70696 9.70703C3.31644 10.0975 2.68342 10.0975 2.29289 9.70703C1.90237 9.31651 1.90237 8.68349 2.29289 8.29297L6.58586 4H3.99992C3.44764 4 2.99992 3.55228 2.99992 3C2.99992 2.44772 3.44764 2 3.99992 2H8.99992L9.10246 2.00488Z"
                fill="#8DDC74"
            />
        </Svg>
    );
};

export default ArrowUpDiagonal;
