1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2021, The Android Open Source Project
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9      http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16-->
17<vector xmlns:android="http://schemas.android.com/apk/res/android"
18        xmlns:aapt="http://schemas.android.com/aapt"
19        android:width="200dp"
20        android:height="200dp"
21        android:viewportHeight="64"
22        android:viewportWidth="64">
23
24    <path
25        android:pathData="M0,32
26        A32,32 0 1,1 64,32
27        A32,32 0 1,1 0,32 Z">
28        <aapt:attr name="android:fillColor">
29            <gradient
30                android:centerX="32"
31                android:centerY="32"
32                android:gradientRadius="32"
33                android:type="radial">
34                <item
35                    android:color="#FF000000"
36                    android:offset="0.0"/>
37                <item
38                    android:color="#FF000000"
39                    android:offset="0.94"/>
40                <item
41                    android:color="#00000000"
42                    android:offset="1.0"/>
43            </gradient>
44        </aapt:attr>
45    </path>
46
47    <path
48        android:fillColor="#000"
49        android:strokeWidth="0.25"
50        android:pathData="M2,32
51        A30,30 0 1,1 62,32
52        A30,30 0 1,1 2,32 Z">
53        <aapt:attr name="android:strokeColor">
54            <gradient
55                android:startX="0"
56                android:startY="10"
57                android:startColor="#000"
58                android:endX="0"
59                android:endY="150"
60                android:endColor="#000"
61                android:centerColor="#DDD"
62                android:type="linear"/>
63        </aapt:attr>
64    </path>
65
66</vector>