web.lib.components.extensions-picker.extensions-origin.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-quarkus Show documentation
Show all versions of code-quarkus Show documentation
Customize a Web Interface to generate Quarkus starter projects.
import React, { SVGProps } from 'react';
import { OverlayTrigger, Tooltip } from 'react-bootstrap';
// Generated using svgr
export function PlatformIcon(props: SVGProps){
return (
);
}
export function ExtensionsOrigin(props: { platform: boolean }) {
const Overlay = (
The quark icon indicates the extension is part of the selected Quarkus Platform. Extensions in a platform are tested and verified together and thus safer to use and easier to upgrade.
);
return (
props.platform ?
:
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy