diff --git a/packages/documentation-site/package.json b/packages/documentation-site/package.json
index 6d8840527d..b8193c5b20 100644
--- a/packages/documentation-site/package.json
+++ b/packages/documentation-site/package.json
@@ -17,7 +17,7 @@
"screenshots": "pf-docs-framework screenshots"
},
"dependencies": {
- "@patternfly/documentation-framework": "6.0.0-alpha.61",
+ "@patternfly/documentation-framework": "6.0.0-alpha.62",
"@patternfly/react-catalog-view-extension": "6.0.0-alpha.4",
"@patternfly/react-console": "6.0.0-alpha.3",
"@patternfly/react-docs": "7.0.0-alpha.84",
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/IconRecommendations.js b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/IconRecommendations.js
deleted file mode 100644
index ed9c3ca996..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/IconRecommendations.js
+++ /dev/null
@@ -1,203 +0,0 @@
-import React from 'react';
-import {
- Divider,
- SearchInput,
- Toolbar,
- ToolbarContent,
- ToolbarItem,
- EmptyState,
- EmptyStateBody,
- Spinner
-} from '@patternfly/react-core';
-import * as icons from '@patternfly/react-icons';
-import './icons.css';
-import {
- Table,
- Thead,
- Th,
- Tr,
- Td,
- Tbody
-} from '@patternfly/react-table';
-import { recommendationsArray } from './icon-migrations';
-import faArrowCircleODown from './fa-arrow-circle-o-down.svg';
-import faArrowCircleOUp from './fa-arrow-circle-o-up.svg';
-import faClockO from './fa-clock-o.svg';
-import faColumns from './fa-columns.svg';
-import faTable from './fa-table.svg';
-import faTachometer from './fa-tachometer.svg';
-import faThLarge from './fa-th-large.svg';
-import faTh from './fa-th.svg';
-import pfIconHistory from './pf-icon-history.svg';
-import pficonKey from './pficon-key.svg';
-import pficonSearch from './pficon-search.svg';
-import pficonSettings from './pficon-settings.svg';
-import SearchIcon from "@patternfly/react-icons/dist/esm/icons/search-icon";
-
-const iconSvgs = {
- 'fa-arrow-circle-o-down': faArrowCircleODown,
- 'fa-arrow-circle-o-up': faArrowCircleOUp,
- 'fa-clock-o': faClockO,
- 'fa-columns': faColumns,
- 'fa-table': faTable,
- 'fa-tachometer': faTachometer,
- 'fa-th-large': faThLarge,
- 'fa-th': faTh,
- 'pf-icon-history': pfIconHistory,
- 'pficon-key': pficonKey,
- 'pficon-search': pficonSearch,
- 'pficon-settings': pficonSettings
-};
-
-const concatChildText = (children, text = '') => {
- React.Children.forEach(children, (child) => {
- if (typeof child === 'string') {
- text += child;
- } else if (React.isValidElement(child)) {
- text = concatChildText(child.props.children, text);
- }
- });
- return text;
-}
-
-export const IconRecommendations = () => {
- const [searchValue, setSearchValue] = React.useState('');
- const [sortByIndex, setSortByIndex] = React.useState();
- const [sortDirection, setSortDirection] = React.useState();
-
- const getSortParams = columnIndex => ({
- sortBy: {
- index: sortByIndex,
- direction: sortDirection,
- defaultDirection: 'asc' // starting sort direction when first sorting a column. Defaults to 'asc'
- },
- onSort: (_event, index, direction) => {
- setSortByIndex(index);
- setSortDirection(direction);
- },
- columnIndex
- });
-
- const filteredRows = React.useMemo(() => {
- return recommendationsArray.filter(recommendation => (
- recommendation.some(iconObj => {
- // match if any text value for an icon contains searchValue
- return Object.values(iconObj).some(val => {
- // extract & search text in nested JSX
- const cellText = concatChildText(val);
- return cellText.toLowerCase().includes(searchValue.toLowerCase());
- });
- })
- ))
- }, [searchValue]);
-
- const sortedRows = React.useMemo(() => {
- let rows = filteredRows;
- if (sortByIndex !== null) {
- rows.sort((a, b) => {
- const cellA = sortByIndex === 0 ? a[0].iconName.toLowerCase() : a[a.length - 1].iconName.toLowerCase();
- const cellB = sortByIndex === 0 ? b[0].iconName.toLowerCase() : b[b.length - 1].iconName.toLowerCase();
- return cellA < cellB
- ? -1
- : cellA > cellB
- ? 1 : 0
- });
- }
- return sortDirection === 'asc' ? rows : rows.reverse();
- }, [sortByIndex, sortDirection, filteredRows]);
-
- return (
-
-
+
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-arrow-circle-o-up.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-arrow-circle-o-up.svg
deleted file mode 100755
index 3dd0dea5bb..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-arrow-circle-o-up.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-clock-o.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-clock-o.svg
deleted file mode 100755
index 08432758ba..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-clock-o.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-columns.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-columns.svg
deleted file mode 100755
index b9e9451102..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-columns.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-table.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-table.svg
deleted file mode 100755
index b32c846808..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-table.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-tachometer.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-tachometer.svg
deleted file mode 100755
index f8a9a8f5b1..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-tachometer.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th-large.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th-large.svg
deleted file mode 100755
index 4443b9cc8e..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th-large.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th.svg
deleted file mode 100755
index dd6b37646c..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/fa-th.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icon-migrations.js b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icon-migrations.js
deleted file mode 100644
index 5ba0dfe4f1..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icon-migrations.js
+++ /dev/null
@@ -1,1321 +0,0 @@
-import React from 'react';
-import { Link } from '@patternfly/documentation-framework/components';
-
-export const recommendationsArray = [
- [
- {
- style: "",
- iconName: "angle-up",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "AngleUpIcon"
- },
- {
- style: "fas",
- iconName: "fa-angle-right",
- type: "Framework",
- iconUsage: "Indicates expandable elements such as accordions, progressive disclosures, or expandable lists are currently collapsed. Clicking this will expand the element. It also indicates the ability to navigate to the next page in a multipage data set.",
- iconType: "new",
- reactIcon: "AngleRightIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-arrow-circle-o-down",
- type: "",
- iconUsage: "Not included in Font Awesome Free",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-arrow-circle-down",
- type: "Status",
- iconUsage: "Represents status: an item (such as a VM) is down",
- iconType: "new",
- reactIcon: "ArrowCircleDownIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-arrow-circle-o-up",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-arrow-circle-up",
- type: "Status",
- iconUsage: "Represents status: an item (such as a VM) is up",
- iconType: "new",
- reactIcon: "ArrowCircleUpIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-sort",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SortIcon"
- },
- {
- style: "fas",
- iconName: "fa-arrows-alt-v",
- type: "Framework",
- iconUsage: "Indicates the availability of a sorting function in a table header",
- iconType: "new",
- reactIcon: "ArrowsAltVIcon"
- }
- ],
- [
- {
- style: "fas",
- iconName: "fas fa-calendar-alt",
- type: "",
- iconUsage: "Incorrect icon used in react PF component",
- iconType: "old",
- reactIcon: "CalendarAltIcon"
- },
- {
- style: "far",
- iconName: "fa-calendar-alt",
- type: "Framework",
- iconUsage: "Indicates a date picker function is available",
- iconType: "new",
- reactIcon: "OutlinedCalendarAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-columns",
- type: "",
- iconUsage: "Not included in Font Awesome Free",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-columns",
- type: "Action",
- iconUsage: "Indicates the ability to manage columns for a table view",
- iconType: "new",
- reactIcon: "ColumnsIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-plus-square",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PlusSquareIcon"
- },
- {
- style: "fas",
- iconName: "fa-plus-circle",
- type: "Action",
- iconUsage: "Indicates the ability to create an item",
- iconType: "new",
- reactIcon: "PlusCircleIcon"
- },
- {
- style: "",
- iconName: "pf-icon-add-circle-o",
- type: "Action",
- iconUsage: "Indicates the ability to create an item. Use this if there are many instances of this icon in a UI (data list, table, etc) to reduce visual noise.",
- iconType: "new",
- reactIcon: "AddCircleOIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-rebalance",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "RebalanceIcon"
- },
- {
- style: "fas",
- iconName: "fa-balance-scale",
- type: "Status",
- iconUsage: "Represents status: an item needs rebalancing",
- iconType: "new",
- reactIcon: "BalanceScaleIcon"
- }
- ],
- [
- {
- style: "far",
- iconName: "fa-bell",
- type: "OutlinedBellIcon",
- iconUsage: "Framework",
- iconType: "old",
- reactIcon: "OutlinedBellIcon"
- },
- {
- style: "fas",
- iconName: "fa-bell-slash",
- type: "BellSlashIcon",
- iconUsage: "Status",
- iconType: "old",
- reactIcon: "BellSlashIcon"
- },
- {
- style: "fas",
- iconName: "fa-bell",
- type: "BellIcon",
- iconUsage: "Indicates the ability to open a notification drawer.",
- iconType: "new",
- reactIcon: "BellIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "Sort Down",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SortDownIcon"
- },
- {
- style: "fas",
- iconName: "fa-caret-down",
- type: "Framework",
- iconUsage: "Indicates the ability to acces options for components like drop-downs, filters and page ranges",
- iconType: "new",
- reactIcon: "CaretDownIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-clock-o",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "far",
- iconName: "fa-clock",
- type: "Framework",
- iconUsage: "If read-only, paired with a label to indicate a time interval. If interactive, indicates the availability of a time picker control.",
- iconType: "new",
- reactIcon: "OutlinedClockIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-caret-down",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "CaretDownIcon"
- },
- {
- style: "",
- iconName: "fas fa-sort-amount-up",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SortAmountUpIcon"
- },
- {
- style: "",
- iconName: "sort-alpha-down-alt",
- type: "",
- iconUsage: "For ordering a data set alphabetically (Descending)",
- iconType: "old",
- reactIcon: "SortAlphaDownAltIcon"
- },
- {
- style: "",
- iconName: "sort-numeric-down-alt",
- type: "",
- iconUsage: "For ordering a data set numerically (Descending)",
- iconType: "old",
- reactIcon: "SortNumericDownAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-sort-amount-down",
- type: "Action",
- iconUsage: "Represents the largest-to-smallest, highest-to-lowest or last-to-first (descending) sort order for any data type.",
- iconType: "new",
- reactIcon: "SortAmountDownIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-caret-up",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "CaretUpIcon"
- },
- {
- style: "",
- iconName: "pf-icon-sort-common-asc",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PficonSortCommonAscIcon"
- },
- {
- style: "",
- iconName: "sort-alpha-down",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SortAlphaDownIcon"
- },
- {
- style: "",
- iconName: "sort-numeric-down",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SortNumericDownIcon"
- },
- {
- style: "fas",
- iconName: "fa-sort-amount-down-alt",
- type: "Action",
- iconUsage: "Represents the smallest-to-largest, lowest-to-highest or first-to-last (ascending) sort order for any data type.",
- iconType: "new",
- reactIcon: "SortAmountDownAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-ok",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OkIcon"
- },
- {
- style: "",
- iconName: "Outlined Check Circle",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OutlinedCheckCircleIcon"
- },
- {
- style: "fas",
- iconName: "fa-check-circle",
- type: "Status",
- iconUsage: "Represents alert status: success",
- iconType: "new",
- reactIcon: "CheckCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-orders",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OrdersIcon"
- },
- {
- style: "fas",
- iconName: "fa-clipboard-check",
- type: "Object",
- iconUsage: "Represents orders or tasks",
- iconType: "new",
- reactIcon: "ClipboardCheckIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-cogs",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "CogsIcon"
- },
- // {
- // style: "",
- // iconName: "sliders-v (PRO only, NOT free)",
- // type: "",
- // iconUsage: "",
- // iconType: "old",
- // reactIcon: ""
- // },
- {
- style: "",
- iconName: "pficon-settings",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-cog",
- type: "Action",
- iconUsage: "Indicates availability of configurable settings",
- iconType: "new",
- reactIcon: "CogIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-chat",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ChatIcon"
- },
- {
- style: "far",
- iconName: "fa-comments",
- type: "Framework",
- iconUsage: "Indicates availability of commenting",
- iconType: "new",
- reactIcon: "OutlinedCommentsIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-screen",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ScreenIcon"
- },
- {
- style: "",
- iconName: "TV",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "TvIcon"
- },
- {
- style: "fas",
- iconName: "fa-desktop",
- type: "Object",
- iconUsage: "Represents a desktop, workstation or terminal",
- iconType: "new",
- reactIcon: "DesktopIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-error-circle-o",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ErrorCircleOIcon"
- },
- {
- style: "fas",
- iconName: "fa-exclamation-circle",
- type: "Status",
- iconUsage: "Represents alert status: danger, major error or critical error",
- iconType: "new",
- reactIcon: "ExclamationCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-warning-triangle",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "WarningTriangleIcon"
- },
- {
- style: "fas",
- iconName: "fa-exclamation-triangle",
- type: "Status",
- iconUsage: "Represents alert status: warning",
- iconType: "new",
- reactIcon: "ExclamationTriangleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon pf-icon-filter",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "FilterAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-filter",
- type: "Action",
- iconUsage: "Indicates the ability to filter search results or datasets",
- iconType: "new",
- reactIcon: "FilterIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-messages",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "MessagesIcon"
- },
- {
- style: "fas",
- iconName: "fa-flag",
- type: "Object",
- iconUsage: "If read-only, paired with a label to represent a message. If interactive, indicates the ability to access messages",
- iconType: "new",
- reactIcon: "FlagIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-folder-close",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "FolderCloseIcon"
- },
- {
- style: "fas",
- iconName: "fa-folder",
- type: "Framework",
- iconUsage: "Represents a collapsed hierarchical group. Indicates the ability to expand the group.",
- iconType: "new",
- reactIcon: "FolderIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-folder-open",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "FolderOpenAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-folder-open",
- type: "Framework",
- iconUsage: "Represents an expanded hierarchical group. Indicates the ability to collapse the group.",
- iconType: "new",
- reactIcon: "FolderOpenIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-container-node",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ContainerNodeIcon"
- },
- {
- style: "fas",
- iconName: "fa-hdd",
- type: "Object",
- iconUsage: "Represents a single node or host",
- iconType: "new",
- reactIcon: "HddIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-history",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-history",
- type: "Status",
- iconUsage: "Represents status: restarting",
- iconType: "new",
- reactIcon: "HistoryIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-history",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PficonHistoryIcon"
- },
- {
- style: "",
- iconName: "Undo Alt",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UndoAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-undo",
- type: "Action",
- iconUsage: "Indicates the ability to undo an a step in a historical log",
- iconType: "new",
- reactIcon: "UndoIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon pf-icon-home",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "HomeAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-home",
- type: "Framework",
- iconUsage: "Indicates a link to a default/home page",
- iconType: "new",
- reactIcon: "HomeIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-info",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "InfoAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-info-circle",
- type: "Status",
- iconUsage: "Represents alert status: information",
- iconType: "new",
- reactIcon: "InfoCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-key",
- type: "",
- iconUsage: "Used to reference an SSH key or something similar",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-key",
- type: "Object",
- iconUsage: "Represents an SSH key or similar security concepts",
- iconType: "new",
- reactIcon: "KeyIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-locked",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "LockedIcon"
- },
- {
- style: "fas",
- iconName: "fa-lock",
- type: "Status",
- iconUsage: "Represents status: locked",
- iconType: "new",
- reactIcon: "LockIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-unlocked",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UnlockedIcon"
- },
- {
- style: "fas",
- iconName: "fa-lock-open",
- type: "Status",
- iconUsage: "Represents status: unlocked",
- iconType: "new",
- reactIcon: "LockOpenIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-map-marker",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "MapMarkerAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-map-marker",
- type: "Framework",
- iconUsage: "Represents a locale",
- iconType: "new",
- reactIcon: "MapMarkerIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon pf-icon-memory",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "MemoryAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-memory",
- type: "Object",
- iconUsage: "Represents the memory on a device",
- iconType: "new",
- reactIcon: "MemoryIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-cpu",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "CpuIcon"
- },
- {
- style: "fas",
- iconName: "fa-microchip",
- type: "Object",
- iconUsage: "Represents the CPU of a device",
- iconType: "new",
- reactIcon: "MicrochipIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "Outline Pause Circle",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OutlinedPauseCircleIcon"
- },
- {
- style: "",
- iconName: "pf-icon-paused",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PausedIcon"
- },
- {
- style: "fas",
- iconName: "fa-pause-circle",
- type: "Status",
- iconUsage: "Represents status: an interruption and/or stoppage of a process",
- iconType: "new",
- reactIcon: "PauseCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-edit",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "EditIcon"
- },
- {
- style: "",
- iconName: "pf-icon pf-icon-edit",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "EditAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-pencil-alt",
- type: "Action",
- iconUsage: "Indicates the ability to edit",
- iconType: "new",
- reactIcon: "PencilAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-unplugged",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UnpluggedIcon"
- },
- {
- style: "",
- iconName: "pf-icon-plugged",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PluggedIcon"
- },
- {
- style: "",
- iconName: "n/a",
- type: "",
- iconUsage: "These icons remain the PatternFly font, but their use is now obsolete",
- iconType: "new",
- reactIcon: ""
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-on",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OnIcon"
- },
- {
- style: "fas",
- iconName: "fa-power-off",
- type: "Status",
- iconUsage: "Represents status: powered on",
- iconType: "new",
- reactIcon: "PowerOffIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon pf-icon-print",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "PrintAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-print",
- type: "Action",
- iconUsage: "Indicates the availability of a print function",
- iconType: "new",
- reactIcon: "PrintIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-help",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "HelpIcon"
- },
- {
- style: "far",
- iconName: "fa-question-circle",
- type: "Framework",
- iconUsage: "Indicates the availability of contextual help",
- iconType: "new",
- reactIcon: "OutlinedQuestionCircleIcon"
- },
- {
- style: "fas",
- iconName: "fa-question-circle",
- type: "Framework",
- iconUsage: "Indicates the availability of a help system in the masthead",
- iconType: "new",
- reactIcon: "QuestionCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-rebooting",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "RebootingIcon"
- },
- {
- style: "",
- iconName: "pf-icon-spinner2",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "Spinner2Icon"
- },
- {
- style: "fas",
- iconName: "fa-redo",
- type: "Action",
- iconUsage: "Indicates the ability to refresh. Please use the animated spinner to indicate that something is “loading” or in the middle of processing",
- iconType: "new",
- reactIcon: "RedoIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-search",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-search",
- type: "Action",
- iconUsage: "Indicates that that user may perform a search",
- iconType: "new",
- reactIcon: "SearchIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "Sync",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SyncIcon"
- },
- {
- style: "fas",
- iconName: "fa-sync-alt",
- type: "Action",
- iconUsage: "Indicates the availability of a sync action",
- iconType: "new",
- reactIcon: "SyncAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-table",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-table",
- type: "View Type",
- iconUsage: "Represents data view content in a table format",
- iconType: "new",
- reactIcon: "TableIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-tachometer",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-tachometer-alt",
- type: "View Type",
- iconUsage: "Indicates the availability of a dashboard view",
- iconType: "new",
- reactIcon: "TachometerAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-th",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-th",
- type: "View Type",
- iconUsage: "Represents data view content in a small card format",
- iconType: "new",
- reactIcon: "ThIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fa-th-large",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "svg"
- },
- {
- style: "fas",
- iconName: "fa-th-large",
- type: "View Type",
- iconUsage: "Represents data view content in a large card format",
- iconType: "new",
- reactIcon: "ThLargeIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-thumb-tack",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ThumbTackIcon"
- },
- {
- style: "fas",
- iconName: "fa-thumbtack",
- type: "Framework",
- iconUsage: "Indicates the ability to pin an item",
- iconType: "new",
- reactIcon: "ThumbtackIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-close",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "CloseIcon"
- },
- {
- style: "fas",
- iconName: "fa-times",
- type: "Action",
- iconUsage: "Indicates the ability to close a modal or other panel",
- iconType: "new",
- reactIcon: "TimesIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-error-circle-o",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ErrorCircleOIcon"
- },
- {
- style: "fas",
- iconName: "fa-times-circle",
- type: "Action",
- iconUsage: "Indicates the ability to clear existing data, such as filter criteria or tags",
- iconType: "new",
- reactIcon: "TimesCircleIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-delete",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "Remove2Icon"
- },
- {
- style: "fas",
- iconName: "fa-trash",
- type: "Action",
- iconUsage: "Indicates the ability to delete",
- iconType: "new",
- reactIcon: "TrashIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-user",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UserSecIcon"
- },
- {
- style: "",
- iconName: "User Alt",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UserAltIcon"
- },
- {
- style: "fas",
- iconName: "fa-user",
- type: "Object",
- iconUsage: "If read-only, represents a user (in a dataset, precedes a username). If interactive, indicates the availability of a user profile (often in the masthead, coupled with a username)",
- iconType: "new",
- reactIcon: "UserIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon pf-icon-users",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UsersAltIcon"
- },
- {
- style: "",
- iconName: "pf-icon-project",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ProjectIcon"
- },
- {
- style: "",
- iconName: "fas fa-user-friends",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "UserFriendsIcon"
- },
- {
- style: "fas",
- iconName: "fa-users",
- type: "Object",
- iconUsage: "Represents multiple users, a user grouping or project",
- iconType: "new",
- reactIcon: "UsersIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-maintenance",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "MaintenanceIcon"
- },
- {
- style: "",
- iconName: "Tools",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ToolsIcon"
- },
- {
- style: "fas",
- iconName: "fa-wrench",
- type: "Status",
- iconUsage: "Represents status: in preparation for maintenance",
- iconType: "new",
- reactIcon: "WrenchIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-arrow",
- type: "",
- iconUsage: "Open in a new tab or window",
- iconType: "old",
- reactIcon: "ArrowIcon"
- },
- {
- style: "",
- iconName: "pficon-applications",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ApplicationsIcon"
- },
- {
- style: "far",
- iconName: "window-restore",
- type: "Action",
- iconUsage: "Indicates the ability to open link in a new window",
- iconType: "new",
- reactIcon: "OutlinedWindowRestoreIcon"
- }
- ],
- [
- {
- style: "fas",
- iconName: "fas fa-share-square",
- type: "Action",
- iconUsage: "Indicates the ability to share via various methods with others",
- iconType: "new",
- reactIcon: "ShareSquareIcon"
- },
- {
- style: "",
- iconName: "pficon-arrow",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ArrowIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-on-running",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "OnRunningIcon"
- },
- {
- style: "",
- iconName: "pf-icon-running",
- type: "Status",
- iconUsage: "Represents status: an item is running or active",
- iconType: "new",
- reactIcon: "RunningIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "fas fa-save",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SaveIcon"
- },
- {
- style: "",
- iconName: "pficon-save",
- type: "Action",
- iconUsage: "Indicates the ability to save a file or other object",
- iconType: "new",
- reactIcon: "SaveAltIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-server",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "ServerAltIcon"
- },
- {
- style: "",
- iconName: "pficon-cluster",
- type: "Object",
- iconUsage: "Represents a cluster or server",
- iconType: "new",
- reactIcon: "ClusterIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pficon-dragdrop",
- type: "",
- iconUsage: "Indicates the ability to drag/drop an item",
- iconType: "old",
- reactIcon: "PficonDragdropIcon"
- },
- {
- style: "fas",
- iconName: "grip-horizontal",
- type: "Framework",
- iconUsage: "Indicates the ability to move a vertically-oriented component via drag and drop",
- iconType: "new",
- reactIcon: "GripHorizontalIcon"
- },
- {
- style: "fas",
- iconName: "grip-vertical",
- type: "Framework",
- iconUsage: "Indicates the ability to move a horizontally-oriented component via drag and drop",
- iconType: "new",
- reactIcon: "GripVerticalIcon"
- }
- ],
- [
- {
- style: "",
- iconName: "pf-icon-spinner",
- type: "",
- iconUsage: "",
- iconType: "old",
- reactIcon: "SpinnerAltIcon"
- },
- {
- style: "",
- iconName: "pf-icon-spinner",
- type: "",
- iconUsage: "Indicates data is loading",
- iconType: "old",
- reactIcon: "SpinnerIcon"
- },
- {
- style: "",
- iconName: "",
- type: "",
- iconUsage: Use the animated PatternFly Spinner component to indicate that something is "loading" or in the middle of processing ,
- iconType: "new",
- reactIcon: "PF-Spinner-Component"
- }
- ]
-];
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.css b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.css
index 65d985f8f1..7c2f37dd26 100644
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.css
+++ b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.css
@@ -1,126 +1,5 @@
-.pf-v6-c-divider.ws-icons-divider {
- margin: 48px 0;
-}
-
-.pf-v6-c-divider.ws-icons-divider:first-of-type {
- margin-top: var(--pf-t--global--spacer--sm);
-}
-
-.ws-sm-icons-1 {
- width: 170px;
-}
-
-.ws-sm-icons-2 {
- width: 200px;
-}
-
-.ws-md-icons {
- width: 600px;
-}
-
-.ws-lg-icons {
- width: 650px;
-}
-
-.ws-xl-icons {
- width: 300px;
-}
-
-.ws-icon-recommendations tbody {
- vertical-align: top;
-}
-
-.ws-icons-recommendations .ws-recommendations-icon {
- width: 24px;
- display: inline-block;
- margin-right: 8px;
-}
-
-#ws-icons-table td[data-label="Icon"] svg,
-#ws-icons-table td[data-label="Unicode"] span {
- cursor: pointer;
-}
-
-#ws-icons-table [data-label="Type"] {
- display: none;
-}
-
-#all-icons ~ .ws-p > .ws-code {
- margin-inline-start: var(--pf-t--global--spacer--sm);
-}
-
-.ws-icon-code {
- background: none;
- border: none;
-}
-
-@media screen and (max-width: 1199px) {
- .ws-icons-alignment-section {
- margin-top: 24px;
- }
-}
-
-.ws-icons-gridtext .ws-icon-sizes-sm {
- margin-top: 24px;
-}
-
-.ws-icons-gridtext .ws-icon-sizes .ws-icon-size {
- width: 54px;
- margin-right: 24px;
- text-align: center;
-}
-
-.ws-icon-size-examples .ws-icons-appLauncher .pf-v6-c-app-launcher__menu {
- position: static;
-}
-
-.ws-icon-size-examples .ws-login-icons {
- max-width: 100%;
-}
-
-.ws-icon-size-examples .ws-icons-appLauncher {
- width: 100%;
-}
-
-.ws-icon-size-examples .ws-icons-appLauncher .pf-v6-c-app-launcher__toggle,
-.ws-icon-size-examples .ws-icons-appLauncher .pf-v6-c-app-launcher__group:first-child {
- display: none;
-}
-
-.ws-icon-size-examples .pf-v6-c-card__body:first-child {
- padding: 16px;
- padding-top: 8px;
-}
-
-.ws-icon-size-examples .ws-p {
- margin-top: 16px;
- margin-bottom: 8px;
-}
-
-.ws-icon-sizes-xl {
- margin-bottom: 24px;
-}
-
-.ws-icon-alignment {
- margin-top: 16px;
- max-width: 480px;
- width: 100%;
-}
-
-.ws-icons-empty-state.pf-v6-c-empty-state {
- padding-top: 0;
- padding-bottom: 0;
-}
-
-.ws-icon-svg {
- height: 16px;
- width: 16px;
- vertical-align: -0.125em;
-}
-
@media screen and (min-width: 992px) {
- #iconsSearch,
- #recommendedIconsSearch {
+ #iconsSearch {
width: 400px;
}
}
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.js b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.js
index ec4ad7c6cd..a683f1cabe 100644
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.js
+++ b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.js
@@ -111,7 +111,7 @@ export const iconsData = [
"React_name": "BellIcon",
"Type": "Status",
"Contextual_usage": "Represents status: default notification",
- // color: 'var(--pf-v6-global--primary-color--100)',
+ color: 'var(--pf-t--global--icon--color--brand--default)',
},
{
"Style": "pficon",
@@ -155,7 +155,7 @@ export const iconsData = [
"Type": ["Action","Status"],
"Contextual_usage": "Indicates the ability to commit edited changes",
"Extra_context": "Represents status: OK in content views such as a tables",
- // color: 'var(--pf-v6-global--success-color--100)',
+ color: 'var(--pf-t--global--icon--color--status--success--default)',
},
{
"Style": "fas",
@@ -282,7 +282,7 @@ export const iconsData = [
"React_name": "ExclamationCircleIcon",
"Type": "Status",
"Contextual_usage": "Represents alert status: danger, major error or critical error",
- // color: 'var(--pf-v6-global--danger-color--100)',
+ color: 'var(--pf-t--global--icon--color--status--danger--default)',
},
{
"Style": "fas",
@@ -290,7 +290,7 @@ export const iconsData = [
"React_name": "ExclamationTriangleIcon",
"Type": "Status",
"Contextual_usage": "Represents alert status: warning",
- // color: 'var(--pf-v6-global--warning-color--100)',
+ color: 'var(--pf-t--global--icon--color--status--warning--default)',
},
{
"Style": "fas",
@@ -413,7 +413,7 @@ export const iconsData = [
"React_name": "InfoCircleIcon",
"Type": "Status",
"Contextual_usage": "Represents alert status: information",
- // color: 'var(--pf-v6-global--info-color--100)',
+ color: 'var(--pf-t--global--icon--color--status--info--default)',
},
{
"Style": "fas",
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.md b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.md
index b4ef85b951..d47f242e62 100644
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.md
+++ b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/icons.md
@@ -2,19 +2,13 @@
id: Icons
section: design-foundations
---
-import { Alert, Card, CardBody, Divider, Flex, FlexItem, Grid, GridItem, Icon, Text, TextVariants } from '@patternfly/react-core';
-import CaretDownIcon from '@patternfly/react-icons/dist/esm/icons/caret-down-icon';
+import { Icon, Text, TextVariants } from '@patternfly/react-core';
import CheckCircleIcon from '@patternfly/react-icons/dist/esm/icons/check-circle-icon';
import ExclamationCircleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-circle-icon';
import ExclamationTriangleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-triangle-icon';
import InfoCircleIcon from '@patternfly/react-icons/dist/esm/icons/info-circle-icon';
import BellIcon from '@patternfly/react-icons/dist/esm/icons/bell-icon';
-import GithubIcon from '@patternfly/react-icons/dist/esm/icons/github-icon';
-import OutlinedCalendarAltIcon from '@patternfly/react-icons/dist/esm/icons/outlined-calendar-alt-icon';
import StarIcon from '@patternfly/react-icons/dist/esm/icons/star-icon';
-import TagIcon from '@patternfly/react-icons/dist/esm/icons/tag-icon';
-import TimesCircleIcon from '@patternfly/react-icons/dist/esm/icons/times-circle-icon';
-import { IconRecommendations } from './IconRecommendations';
import { IconsTable } from './IconsTable';
import './icons.css';
@@ -109,7 +103,6 @@ The Font Awesome icons included with PatternFly are Font Awesome solid (FAS) web
3. [Link to a CDN](https://cdnjs.com/libraries/font-awesome)
4. Use the SVG code directly from [fontawesome.com](https://fontawesome.com) (proper attribution is required)
-
## All icons
The following table provides details and usage information for all icons that PatternFly supports.
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/lg-icons.png b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/lg-icons.png
deleted file mode 100644
index d34423ce41..0000000000
Binary files a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/lg-icons.png and /dev/null differ
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/md-icons.png b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/md-icons.png
deleted file mode 100644
index 96c310a512..0000000000
Binary files a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/md-icons.png and /dev/null differ
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pf-icon-history.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pf-icon-history.svg
deleted file mode 100755
index 8331a7e13b..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pf-icon-history.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-key.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-key.svg
deleted file mode 100755
index a685e252b2..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-key.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-search.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-search.svg
deleted file mode 100755
index 90fdd4a2c7..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-search.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-settings.svg b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-settings.svg
deleted file mode 100755
index 1b86265d22..0000000000
--- a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/pficon-settings.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-1.png b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-1.png
deleted file mode 100644
index 61bc275d4a..0000000000
Binary files a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-1.png and /dev/null differ
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-2.png b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-2.png
deleted file mode 100644
index 530facbf52..0000000000
Binary files a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/sm-icons-2.png and /dev/null differ
diff --git a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/xl-icons.png b/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/xl-icons.png
deleted file mode 100644
index 9ee8a9f56a..0000000000
Binary files a/packages/documentation-site/patternfly-docs/content/design-guidelines/styles/icons/xl-icons.png and /dev/null differ