add databricks icon (#9445)

Adds DatabricksIcon.svelte (brand mark, #FF3621) and registers it under
`databricks` in the shared APP_TO_ICON_COMPONENT map, so both the app and
hub frontends pick it up for the new Databricks hub integration.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
This commit is contained in:
hugocasa
2026-06-04 21:02:51 +02:00
committed by GitHub
parent dad2bd0b93
commit 00a96b82f3
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,21 @@
<script lang="ts">
interface Props {
height?: string;
width?: string;
}
let { height = '24px', width = '24px' }: Props = $props();
</script>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
{width}
{height}
viewBox="0 0 24 24"
style="fill:#FF3621;"
>
<path
d="M.95 14.184L12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z"
/>
</svg>
@@ -27,6 +27,7 @@ import QRCodeIcon from './QRCodeIcon.svelte'
import LinkedinIcon from './LinkedinIcon.svelte'
import HubspotIcon from './HubspotIcon.svelte'
import DatadogIcon from './DatadogIcon.svelte'
import DatabricksIcon from './DatabricksIcon.svelte'
import AdobeAcrobatSignIcon from './AdobeAcrobatSignIcon.svelte'
import StripeIcon from './StripeIcon.svelte'
import TelegramIcon from './TelegramIcon.svelte'
@@ -246,6 +247,7 @@ export const APP_TO_ICON_COMPONENT = {
linkedin: LinkedinIcon,
hubspot: HubspotIcon,
datadog: DatadogIcon,
databricks: DatabricksIcon,
adobe_acrobat_sign: AdobeAcrobatSignIcon,
stripe: StripeIcon,
telegram: TelegramIcon,