aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/message_bubble_sent_dark_orange.xml
blob: 6e81cabe719e388f51efe5d6634c11d7f1e9dbb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp"
        android:bottomRightRadius="0dp"
        android:bottomLeftRadius="5dp" />
    <padding
        android:bottom="4dp"
        android:left="6dp"
        android:right="6dp"
        android:top="4dp" />
    <solid android:color="@color/darkorange" />
</shape>