aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/message_bubble_received_warning.xml
blob: b3bf6d4510db6858f3a4a10668cc30fb07d58244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners
        android:topLeftRadius="0dp"
        android:topRightRadius="5dp"
        android:bottomRightRadius="5dp"
        android:bottomLeftRadius="5dp">
    </corners>
    <padding
        android:bottom="4dp"
        android:left="6dp"
        android:right="6dp"
        android:top="4dp" />
    <stroke
        android:width="1dp"
        android:color="@color/grey500">
    </stroke>
    <solid
        android:color="@color/lightred">
    </solid>
</shape>