21 lines
665 B
XML
21 lines
665 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:width="150dp"
|
|
android:height="150dp"
|
|
android:viewportWidth="150"
|
|
android:viewportHeight="150">
|
|
<!-- Red circle background -->
|
|
<path
|
|
android:fillColor="#CC0000"
|
|
android:pathData="M75,75m-60,0a60,60 0,1 1,120 0a60,60 0,1 1,-120 0"/>
|
|
<!-- X mark -->
|
|
<path
|
|
android:strokeWidth="10"
|
|
android:strokeColor="#FFFFFF"
|
|
android:pathData="M45,45L105,105"/>
|
|
<path
|
|
android:strokeWidth="10"
|
|
android:strokeColor="#FFFFFF"
|
|
android:pathData="M105,45L45,105"/>
|
|
</vector>
|