= ({
const renderDropZone = () => (
<>
}
+ titleIcon={}
titleText="Drag and drop your file here"
infoText={infoText}
isUploadButtonHidden
diff --git a/packages/module/src/Message/LinkMessage/LinkMessage.tsx b/packages/module/src/Message/LinkMessage/LinkMessage.tsx
index 3e89d86b2..5f72fa9bc 100644
--- a/packages/module/src/Message/LinkMessage/LinkMessage.tsx
+++ b/packages/module/src/Message/LinkMessage/LinkMessage.tsx
@@ -3,7 +3,7 @@
// ============================================================================
import { Button, ButtonProps } from '@patternfly/react-core';
-import { ExternalLinkSquareAltIcon } from '@patternfly/react-icons';
+import { RhMicronsExternalLinkIcon } from '@patternfly/react-icons';
import { ExtraProps } from 'react-markdown';
import { css } from '@patternfly/react-styles';
@@ -26,7 +26,7 @@ const LinkMessage = ({
component="a"
variant="link"
href={href}
- icon={}
+ icon={}
iconPosition="end"
isInline
target={target}
diff --git a/packages/module/src/Message/Message.test.tsx b/packages/module/src/Message/Message.test.tsx
index b1e22895c..24d036ac9 100644
--- a/packages/module/src/Message/Message.test.tsx
+++ b/packages/module/src/Message/Message.test.tsx
@@ -22,7 +22,7 @@ jest.mock('@patternfly/react-icons', () => ({
PencilAltIcon: () => PencilAltIcon
,
CheckIcon: () => CheckIcon
,
CloseIcon: () => CloseIcon
,
- ExternalLinkSquareAltIcon: () => ExternalLinkSquareAltIcon
,
+ RhMicronsExternalLinkIcon: () => RhMicronsExternalLinkIcon
,
TimesIcon: () => TimesIcon
}));
diff --git a/packages/module/src/MessageBar/MessageBar.test.tsx b/packages/module/src/MessageBar/MessageBar.test.tsx
index 2e970e2b2..b4c6518be 100644
--- a/packages/module/src/MessageBar/MessageBar.test.tsx
+++ b/packages/module/src/MessageBar/MessageBar.test.tsx
@@ -6,7 +6,7 @@ import {
MenuSearchInputProps,
MenuSearchProps
} from '@patternfly/react-core';
-import { BellIcon, CalendarAltIcon, ClipboardIcon, CodeIcon } from '@patternfly/react-icons';
+import { RhUiAttentionBellIcon, RhUiCalendarIcon, RhUiClipboardIcon, RhUiCodeIcon } from '@patternfly/react-icons';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { createRef } from 'react';
@@ -43,19 +43,19 @@ const ATTACH_MENU_ITEMS = [
,
- }>
+ }>
Alerts
- }>
+ }>
Events
- }>
+ }>
Logs
- }>
+ }>
YAML - Status
- }>
+ }>
YAML - All contents
diff --git a/packages/module/src/SourcesCard/SourcesCard.scss b/packages/module/src/SourcesCard/SourcesCard.scss
index c314d2149..32464cc8e 100644
--- a/packages/module/src/SourcesCard/SourcesCard.scss
+++ b/packages/module/src/SourcesCard/SourcesCard.scss
@@ -79,25 +79,12 @@
justify-content: space-between;
flex: 1;
- .pf-v6-c-button {
- border-radius: var(--pf-t--global--border--radius--pill);
- padding: var(--pf-t--global--spacer--sm);
- width: 2.31rem;
- height: 2.31rem;
- display: flex;
- align-items: center;
- justify-content: center;
- }
button:disabled,
button[disabled] {
.pf-v6-c-icon__content {
color: var(--pf-t--global--icon--color--disabled);
}
}
- .pf-v6-c-button__text {
- display: flex;
- align-items: center;
- }
// Interactive states
.pf-v6-c-button:hover,
.pf-v6-c-button:focus {
diff --git a/packages/module/src/SourcesCardBase/SourcesCardBase.tsx b/packages/module/src/SourcesCardBase/SourcesCardBase.tsx
index 60eb22480..d64880574 100644
--- a/packages/module/src/SourcesCardBase/SourcesCardBase.tsx
+++ b/packages/module/src/SourcesCardBase/SourcesCardBase.tsx
@@ -23,11 +23,10 @@ import {
CardTitleProps,
ExpandableSection,
ExpandableSectionVariant,
- Icon,
Truncate,
TruncateProps
} from '@patternfly/react-core';
-import { ExternalLinkSquareAltIcon } from '@patternfly/react-icons';
+import { RhMicronsCaretLeftIcon, RhMicronsCaretRightIcon, RhMicronsExternalLinkIcon } from '@patternfly/react-icons';
export interface SourcesCardBaseProps extends CardProps {
/** Additional classes for the pagination navigation container. */
@@ -139,7 +138,7 @@ const SourcesCardBase: FunctionComponent = ({
component="a"
variant={ButtonVariant.link}
href={source.link}
- icon={source.isExternal ? : undefined}
+ icon={source.isExternal ? : undefined}
iconPosition="end"
isInline
rel={source.isExternal ? 'noreferrer' : undefined}
@@ -202,7 +201,7 @@ const SourcesCardBase: FunctionComponent = ({
component="a"
variant={ButtonVariant.link}
href={sources[page - 1].link}
- icon={sources[page - 1].isExternal ? : undefined}
+ icon={sources[page - 1].isExternal ? : undefined}
iconPosition="end"
isInline
rel={sources[page - 1].isExternal ? 'noreferrer' : undefined}
@@ -254,6 +253,7 @@ const SourcesCardBase: FunctionComponent = ({
>
{page}/{sources.length}