forked from thijooree/android
40 lines
1.8 KiB
XML
40 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||
android:width="24dp"
|
||
android:height="24dp"
|
||
android:viewportWidth="24"
|
||
android:viewportHeight="24">
|
||
<!-- Card icon -->
|
||
<path
|
||
android:fillColor="?attr/colorOnSurfaceVariant"
|
||
android:pathData="M20,4H4C2.89,4 2.01,4.89 2.01,6L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V6C22,4.89 21.11,4 20,4zM20,18H4v-6h16V18zM20,8H4V6h16V8z" />
|
||
<!-- Background circle separating gear from card -->
|
||
<path
|
||
android:fillColor="?attr/colorSurface"
|
||
android:pathData="M12.5,18 A5.5,5.5 0 1 0 23.5,18 A5.5,5.5 0 1 0 12.5,18 Z" />
|
||
<!--
|
||
Simple 6-tooth gear, scaled 0.5x and placed at (18,18) in the icon.
|
||
The gear path is drawn in a 24×24 space (center 12,12); the group
|
||
transform maps it: point(x,y) → (x·0.5+12, y·0.5+12).
|
||
Outer radius=10, root radius=7, hub radius=4.
|
||
Teeth are rectangular (straight-line) so they stay crisp at small scale.
|
||
Outer ring is clockwise; hub hole is counterclockwise (nonZero cutout).
|
||
-->
|
||
<group
|
||
android:scaleX="0.5"
|
||
android:scaleY="0.5"
|
||
android:translateX="12"
|
||
android:translateY="12">
|
||
<path
|
||
android:fillColor="?attr/colorOnSurfaceVariant"
|
||
android:pathData="
|
||
M18.58,9.61 L21.85,10.26 L21.85,13.74 L18.58,14.39
|
||
L17.36,16.50 L18.43,19.66 L15.42,21.40 L13.22,18.89
|
||
L10.78,18.89 L8.58,21.40 L5.57,19.66 L6.64,16.50
|
||
L5.42,14.39 L2.15,13.74 L2.15,10.26 L5.42,9.61
|
||
L6.64,7.50 L5.57,4.34 L8.58,2.60 L10.78,5.11
|
||
L13.22,5.11 L15.42,2.60 L18.43,4.34 L17.36,7.50 Z
|
||
M12,8 A4,4 0 1 0 12,16 A4,4 0 1 0 12,8 Z" />
|
||
</group>
|
||
</vector>
|