Skip to content

Commit

Permalink
feat(icons): added IconQuoteLarge
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloster committed Sep 27, 2023
1 parent da335f6 commit 685d6a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
10 changes: 0 additions & 10 deletions packages/components/src/common/svgs/IconCitationLarge.svg

This file was deleted.

3 changes: 3 additions & 0 deletions packages/components/src/common/svgs/IconQuoteLarge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions packages/components/src/core/Icon/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import { ReactComponent as IconChevronUpLarge } from "../../common/svgs/IconChev
import { ReactComponent as IconChevronUpSmall } from "../../common/svgs/IconChevronUpSmall.svg";
import { ReactComponent as IconCirclesOverlapLarge } from "../../common/svgs/IconCirclesOverlapLarge.svg";
import { ReactComponent as IconCirclesOverlapSmall } from "../../common/svgs/IconCirclesOverlapSmall.svg";
import { ReactComponent as IconCitationLarge } from "../../common/svgs/IconCitationLarge.svg";
import { ReactComponent as IconCompassLarge } from "../../common/svgs/IconCompassLarge.svg";
import { ReactComponent as IconCopyLarge } from "../../common/svgs/IconCopyLarge.svg";
import { ReactComponent as IconCopySmall } from "../../common/svgs/IconCopySmall.svg";
Expand Down Expand Up @@ -84,6 +83,7 @@ import { ReactComponent as IconProjectPrivateLarge } from "../../common/svgs/Ico
import { ReactComponent as IconProjectPublicLarge } from "../../common/svgs/IconProjectPublicLarge.svg";
import { ReactComponent as IconPuzzlePieceSmall } from "../../common/svgs/IconPuzzlePieceSmall.svg";
import { ReactComponent as IconQuestionMarkLarge } from "../../common/svgs/IconQuestionMarkLarge.svg";
import { ReactComponent as IconQuoteLarge } from "../../common/svgs/IconQuoteLarge.svg";
import { ReactComponent as IconRefreshLarge } from "../../common/svgs/IconRefreshLarge.svg";
import { ReactComponent as IconRefreshSmall } from "../../common/svgs/IconRefreshSmall.svg";
import { ReactComponent as IconSaveLarge } from "../../common/svgs/IconSaveLarge.svg";
Expand Down Expand Up @@ -133,7 +133,6 @@ export interface IconNameToSizes {
chevronRight2: "xs" | "s";
chevronRight: "xs" | "s" | "l" | "xl";
chevronUp: "xs" | "s" | "l" | "xl";
citation: "l" | "xl";
circlesOverlap: "xs" | "s" | "l" | "xl";
compass: "l" | "xl";
copy: "xs" | "s" | "l" | "xl";
Expand Down Expand Up @@ -186,6 +185,7 @@ export interface IconNameToSizes {
projectPublic: "l" | "xl";
puzzlePiece: "xs" | "s";
questionMark: "l" | "xl";
quote: "l" | "xl";
refresh: "xs" | "s" | "l" | "xl";
save: "l" | "xl";
search: "xs" | "s" | "l" | "xl";
Expand Down Expand Up @@ -276,10 +276,6 @@ export const iconMap: Props = {
largeIcon: IconChevronUpLarge,
smallIcon: IconChevronUpSmall,
},
citation: {
largeIcon: IconCitationLarge,
smallIcon: null,
},
circlesOverlap: {
largeIcon: IconCirclesOverlapLarge,
smallIcon: IconCirclesOverlapSmall,
Expand Down Expand Up @@ -488,6 +484,10 @@ export const iconMap: Props = {
largeIcon: IconQuestionMarkLarge,
smallIcon: null,
},
quote: {
largeIcon: IconQuoteLarge,
smallIcon: null,
},
refresh: {
largeIcon: IconRefreshLarge,
smallIcon: IconRefreshSmall,
Expand Down

0 comments on commit 685d6a6

Please sign in to comment.