import { MoreInformationInstallVariant } from './MoreInformationInstallVariant'; import { DescriptionList } from '@patternfly/react-core'; export interface MoreInformationDefaultContentProps { textMoreInfoContent?: string | React.ReactNode; } export const MoreInformationDefaultContent: React.FunctionComponent = ({ textMoreInfoContent = ( <>

Clicking "Launch Remote Viewer" will download a .vv file and launch Remote Viewer

Remote Viewer is available for most operating systems. To install it, search for it in GNOME Software or run the following:

) }: MoreInformationDefaultContentProps) => ( <> {textMoreInfoContent}
Download the MSI from{' '} virt-manager.org
); MoreInformationDefaultContent.displayName = 'MoreInformationDefaultContent';