aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/rounded_rectangle_primary.xml
blob: 8ea2b0b5c697e53a3731860befaf8544d1a925dd (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="?attr/colorAccent" />
        <corners android:radius="6dp" />
    </shape>
</item>

</layer-list>