import * as React from 'react'; import { css } from '@neliosoft/inlexa/css'; import { _x } from '@neliosoft/inlexa/i18n'; import { colors } from '@neliosoft/inlexa/theme'; export type FullLogoProps = { readonly className?: string; readonly iconColor?: string; readonly textColor?: string; }; export const FullLogo = ( { className, iconColor = colors.logo.icon, textColor = colors.logo.text, }: FullLogoProps ): JSX.Element => ( );