Skip to content

Commit

Permalink
feat(icon): add IconCubeSmall
Browse files Browse the repository at this point in the history
  • Loading branch information
masoudmanson committed Apr 1, 2024
1 parent f06e554 commit d84d730
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions packages/components/src/common/svgs/IconCubeSmall.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions packages/components/src/core/Icon/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { ReactComponent as IconCompassLarge } from "src/common/svgs/IconCompassL
import { ReactComponent as IconCopyLarge } from "src/common/svgs/IconCopyLarge.svg";
import { ReactComponent as IconCopySmall } from "src/common/svgs/IconCopySmall.svg";
import { ReactComponent as IconCubeLarge } from "src/common/svgs/IconCubeLarge.svg";
import { ReactComponent as IconCubeSmall } from "src/common/svgs/IconCubeSmall.svg";
import { ReactComponent as IconDNALarge } from "src/common/svgs/IconDNALarge.svg";
import { ReactComponent as IconDocumentSmall } from "src/common/svgs/IconDocumentSmall.svg";
import { ReactComponent as IconDotsHorizontal3Large } from "src/common/svgs/IconDotsHorizontal3Large.svg";
Expand Down Expand Up @@ -150,7 +151,7 @@ export interface IconNameToSizes {
Code: "l" | "xl";
Compass: "l" | "xl";
Copy: "xs" | "s" | "l" | "xl";
Cube: "l" | "xl";
Cube: "xs" | "s" | "l" | "xl";
DNA: "l" | "xl";
Document: "xs" | "s";
DotsHorizontal: "xs" | "s" | "l" | "xl";
Expand Down Expand Up @@ -324,7 +325,7 @@ export const iconMap: Props = {
},
Cube: {
largeIcon: IconCubeLarge,
smallIcon: null,
smallIcon: IconCubeSmall,
},
DNA: {
largeIcon: IconDNALarge,
Expand Down

0 comments on commit d84d730

Please sign in to comment.