aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/drawable/checkmark.xml
blob: 9bcf74e675ab310a467e8333ec3b7b55b5438fa5 (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
29
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/checkmark_frame">
        
    </item>
    <item
        android:height="3dp"
        android:top="11dp"
        android:left="7dp"
        android:width="10dp">
        <rotate android:fromDegrees="45" >
            <shape android:shape="rectangle" >
                <solid android:color="@color/ThemeLight" />
            </shape>
        </rotate>
    </item>
    <item
        android:height="3dp"
        android:left="12dp"
        android:top="10dp"
        android:width="15dp">
        <rotate android:fromDegrees="-50" >
            <shape android:shape="rectangle" >
                <solid android:color="@color/ThemeLight" />
            </shape>
        </rotate>
    </item>

</layer-list>