fsparv commented on code in PR #2605:
URL: https://github.com/apache/solr/pull/2605#discussion_r1709553089


##########
solr/compose-ui/src/commonMain/kotlin/org/apache/solr/composeui/ui/icons/SolrLogo.kt:
##########
@@ -0,0 +1,257 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.solr.composeui.ui.icons
+
+import androidx.compose.foundation.layout.Box
+import androidx.compose.material.icons.materialPath
+import androidx.compose.material3.Icon
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.graphics.vector.ImageVector
+import androidx.compose.ui.graphics.vector.rememberVectorPainter
+import androidx.compose.ui.unit.dp
+import org.apache.solr.compose_ui.generated.resources.Res
+import org.apache.solr.compose_ui.generated.resources.cd_solr_logo
+import org.jetbrains.compose.resources.stringResource
+
+/**
+ * Colorized Solr logo.
+ *
+ * @param modifier Modifier that is applied to the wrapper of the logo.
+ */
+@Composable
+fun SolrLogo(
+    modifier: Modifier = Modifier,
+) {
+    val solrPainter = rememberVectorPainter(
+        ImageVector.Builder(
+            name = "Logos.SolrLogo",
+            defaultWidth = 128.dp,
+            defaultHeight = 64.dp,
+            viewportWidth = 128f,
+            viewportHeight = 64f,
+            autoMirror = false,
+        ).apply {
+            materialPath {
+                moveTo(25.7013f, 44.178f)

Review Comment:
   I really don't want to discourage this effort in anyway, but I'm unclear on 
the benefit of a programmatically drawn SVG vs an xml formatted SVG file that 
could be viewed edited with image editing programs, or even an ide. I'm 100% 
for an SVG version that stays crisp of course! Just wondering if this is the 
most maintainable format.
   
   Intellij for example will happily display xml formated svg while you edit 
directly:
   
![image](https://github.com/user-attachments/assets/6df236a5-30d7-4319-beac-b81b3d68530f)
   
   And there may be folks with skill using other more advanced image editing 
tools.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to