Skip to content

Commit

Permalink
Add icons (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
lebogg authored Mar 3, 2024
1 parent bdeb2b5 commit 3ff189f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/lib/components/DiscoveryGraph.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
Folder,
Key,
LockClosed,
Newspaper,
PuzzlePiece,
RectangleGroup,
ServerStack,
Share
Share,
ShieldCheck
} from '@steeze-ui/heroicons';
import type { IconSource } from '@steeze-ui/svelte-icon';
import cytoscape, { type EdgeDefinition, type NodeDefinition, type Stylesheet } from 'cytoscape';
Expand Down Expand Up @@ -151,7 +154,10 @@
...nodeStyle('CodeRepository', Folder, overlay),
...nodeStyle('KeyVault', LockClosed, overlay),
...nodeStyle('Key', Key, overlay),
...nodeStyle('Object', Document, overlay)
...nodeStyle('Secret', PuzzlePiece, overlay),
...nodeStyle('Certificate', Newspaper, overlay),
...nodeStyle('Object', Document, overlay),
...nodeStyle('NetworkSecurityGroup', ShieldCheck, overlay)
]);
return styles;
Expand Down

0 comments on commit 3ff189f

Please sign in to comment.