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
function PlatformIcon(props: SVGProps){
return (
);
}
export function ExtensionsOrigin(props: { platform: boolean }) {
const Overlay = (
The quark indicates the extension is part of the selected Quarkus Platform. Extensions from the platform are recommended over other extensions: they are tested and verified together and thus easier to use and upgrade.
);
return (
props.platform ?
:
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy