summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/drawable/ic_vessel.xml
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-04-22 08:33:41 +0000
committerClaude <noreply@anthropic.com>2026-04-22 08:33:41 +0000
commit447c274999b6b412985b640f841ab92d8c23c0f8 (patch)
tree68ba329f0cadd64333fb5d72587f684fc38a500a /android-app/app/src/main/res/drawable/ic_vessel.xml
parent3cddcd3b0a8719da5e828734a1d3054cef803235 (diff)
parenteeafe2f0f3a3718bd52e9c333894e1abbc0611ab (diff)
Merge branch 'claude/vessel-crew-thermal-features-Qbk4z'
Vessel registry, crew management, and thermal alarm. All 18 new VesselRepositoryTest cases GREEN (59 total across suite). https://claude.ai/code/session_011h2dXbgXg3PesQMmQUNTCW
Diffstat (limited to 'android-app/app/src/main/res/drawable/ic_vessel.xml')
-rw-r--r--android-app/app/src/main/res/drawable/ic_vessel.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/drawable/ic_vessel.xml b/android-app/app/src/main/res/drawable/ic_vessel.xml
new file mode 100644
index 0000000..13a93ed
--- /dev/null
+++ b/android-app/app/src/main/res/drawable/ic_vessel.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Simple sailboat silhouette icon -->
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+ <!-- Hull -->
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M3,17 L5,20 L19,20 L21,17 Z" />
+ <!-- Mast -->
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M12,4 L12,17 M11.5,4 L11.5,17"
+ android:strokeColor="@android:color/white"
+ android:strokeWidth="1.5" />
+ <!-- Main sail -->
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M12,5 L18,15 L12,15 Z" />
+ <!-- Jib -->
+ <path
+ android:fillColor="@android:color/white"
+ android:pathData="M12,7 L7,15 L12,15 Z" />
+</vector>