import React from 'react'; import { SvgXml } from 'react-native-svg'; // Brand glyphs for the messaging channels, mirrored from the web design system's // SocialMediaIcon set (@base44/design-system social-media-icon.data) so the native // Channels screen shows the same full-colour marks the web builder does. The DS // component is React-DOM only and can't be imported here, so its SVG paths are // inlined as standalone documents. Each gradient carries a unique id so multiple // icons can render on one screen without collisions. Brand colours are fixed by // definition and intentionally not themed. export type ChannelBrandId = 'whatsapp' | 'telegram' | 'imessage' | 'slack'; const CHANNEL_BRAND_ICON_XML: Record = { whatsapp: ``, telegram: ``, imessage: ``, slack: ``, }; export function ChannelBrandIcon({ channel, size }: { channel: ChannelBrandId; size: number }) { return ; }