/* * This file belongs to Hoist, an application development toolkit * developed by Extremely Heavy Industries (www.xh.io | info@xh.io) * * Copyright © 2026 Extremely Heavy Industries Inc. */ import {hoistCmp, XH} from '@xh/hoist/core'; import {getLayoutProps} from '@xh/hoist/utils/react'; import React from 'react'; /** * The Extremely Heavy corporate XH logo and word mark, in SVG form. */ export const xhLogo = hoistCmp.factory({ model: false, render(props) { const layoutProps = getLayoutProps(props), style = { fill: XH.darkTheme ? 'white' : 'black', stroke: XH.darkTheme ? 'white' : 'black', ...layoutProps }; return ( ); } });