1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright 2023 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<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:aapt="http://schemas.android.com/aapt">
19    <target android:name="line_01">
20        <aapt:attr name="android:animation">
21            <objectAnimator
22                android:duration="1000"
23                android:propertyName="strokeColor"
24                android:valueFrom="#ff0000"
25                android:valueTo="#0000ff"
26                android:valueType="colorType" />
27        </aapt:attr>
28    </target>
29    <target android:name="line_01">
30        <aapt:attr name="android:animation">
31            <objectAnimator
32                android:duration="1000"
33                android:propertyName="strokeWidth"
34                android:valueFrom="1"
35                android:valueTo="4"
36                android:valueType="floatType" />
37        </aapt:attr>
38    </target>
39    <aapt:attr name="android:drawable">
40        <vector
41            android:width="30dp"
42            android:height="30dp"
43            android:viewportHeight="30"
44            android:viewportWidth="30">
45            <path
46                android:name="line_01"
47                android:pathData=" M0,15 L30,15 "
48                android:strokeAlpha="1"
49                android:strokeColor="#ffffff"
50                android:strokeLineCap="round"
51                android:strokeLineJoin="round"
52                android:strokeWidth="1" />
53        </vector>
54    </aapt:attr>
55</animated-vector>
56