aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/rounded_rectangle_primary.xml
blob: 3a32aa8e5925f6c712527b3b0aed7b6acfaa7a8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item>
    <shape android:shape="rectangle">
        <padding
            android:bottom="2dp"
            android:left="2dp"
            android:right="2dp"
            android:top="2dp" />
        <solid android:color="@color/primary" />
        <corners android:radius="6dp" />
    </shape>
</item>

</layer-list>