summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/drawable/ic_crosshair.xml
blob: 609538e3a3e050f9d0d50b8d8a18493d75ac581c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="32dp"
    android:height="32dp"
    android:viewportWidth="32"
    android:viewportHeight="32">

    <!-- Horizontal line -->
    <path
        android:pathData="M2,16 L13,16 M19,16 L30,16"
        android:strokeColor="#CCFFFFFF"
        android:strokeWidth="1.5"
        android:strokeLineCap="round" />

    <!-- Vertical line -->
    <path
        android:pathData="M16,2 L16,13 M16,19 L16,30"
        android:strokeColor="#CCFFFFFF"
        android:strokeWidth="1.5"
        android:strokeLineCap="round" />

    <!-- Center circle -->
    <path
        android:pathData="M16,16 m-2.5,0 a2.5,2.5 0 1,0 5,0 a2.5,2.5 0 1,0 -5,0"
        android:strokeColor="#CCFFFFFF"
        android:strokeWidth="1.5"
        android:fillColor="#00000000" />

</vector>