13 lines
437 B
XML
13 lines
437 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
|
|
<corners android:radius="1dp" />
|
|
<stroke
|
|
android:dashGap="2.3dp"
|
|
android:dashWidth="3dp"
|
|
android:width="1.2dp"
|
|
android:color="@color/text_color_primary_alpha_70" />
|
|
<size
|
|
android:width="30dp"
|
|
android:height="30dp" />
|
|
</shape>
|