summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/drawables/mastodon/drawable/bubble_right_tail.xml
blob: fa68f846a06e1dbb972d1e7dd980209dea79a3e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:left="20dp">
        <rotate
            android:fromDegrees="-40"
            android:pivotX="100%"
            android:pivotY="100%"
            android:toDegrees="0">
            <shape android:shape="rectangle">
                <solid android:color="?attr/colorPrimary" />
            </shape>
        </rotate>
    </item>
    <item android:right="6dp">
        <shape android:shape="rectangle">
            <solid android:color="?attr/colorPrimary" />
            <corners android:radius="5dp" />
        </shape>
    </item>
</layer-list>