Skip to content

Commit

Permalink
replace quick start route icon with rocket
Browse files Browse the repository at this point in the history
  • Loading branch information
rottencandy committed Sep 10, 2020
1 parent f71e06e commit 3a5279d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
@@ -1,6 +1,6 @@
import * as React from 'react';
import { CatalogTile } from '@patternfly/react-catalog-view-extension';
import { RouteIcon } from '@patternfly/react-icons';
import { RocketIcon } from '@patternfly/react-icons';
import { FallbackImg } from '@console/shared';
import { QuickStartStatus, QuickStart } from '../utils/quick-start-types';
import QuickStartTileHeader from './QuickStartTileHeader';
Expand Down Expand Up @@ -31,7 +31,7 @@ const QuickStartTile: React.FC<QuickStartTileProps> = ({
<FallbackImg
className="co-catalog-item-icon__img--large"
src={iconURL}
fallback={<RouteIcon />}
fallback={<RocketIcon />}
/>
);

Expand Down
@@ -1,6 +1,6 @@
import * as React from 'react';
import { Label, Button } from '@patternfly/react-core';
import { RouteIcon } from '@patternfly/react-icons';
import { RocketIcon } from '@patternfly/react-icons';
import { history } from '../../utils';

const HIDE_QUICK_START_BADGE_STORAGE_KEY = 'bridge/hide-quick-start-badge';
Expand All @@ -22,7 +22,7 @@ const QuickStartBadge: React.FC = () => {
}

return (
<Label color="green" icon={<RouteIcon />} onClose={handleQuickStartBadgeClose}>
<Label color="green" icon={<RocketIcon />} onClose={handleQuickStartBadgeClose}>
<Button variant="link" onClick={() => history.push('/quickstart')} isInline>
Quick start available
</Button>
Expand Down

0 comments on commit 3a5279d

Please sign in to comment.