import React from 'react';
import { Path, Svg } from 'react-native-svg';
import { useTheme } from '../../../branding';

export const InviteUserIcon = () => {
    const { colors } = useTheme();

    return (
        <Svg width={24} height={24} viewBox="0 0 24 24" fill="none">
            <Path
                d="M16 5h5M18.5 2.5v5M2.905 20.25a10.504 10.504 0 0118.19 0M17.63 11.08a5.997 5.997 0 11-4.244-7.92"
                stroke={colors.gray0}
                strokeLinecap="round"
                strokeLinejoin="round"
            />
        </Svg>
    );
};

export default InviteUserIcon;
