Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

feat: adding icon for git-repository #740

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/great-pets-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@appsmithorg/design-system": patch
---

chore: adding icon for git-repository
4 changes: 4 additions & 0 deletions packages/design-system/src/Icon/Icon.provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ const GitCommit = importRemixIcon(
const GitPullRequest = importRemixIcon(
() => import("remixicon-react/GitPullRequestLineIcon"),
);
const GitRepository = importRemixIcon(
() => import("remixicon-react/GitRepositoryLineIcon"),
)
const GlobalLineIcon = importRemixIcon(
() => import("remixicon-react/GlobalLineIcon"),
);
Expand Down Expand Up @@ -1131,6 +1134,7 @@ const ICON_LOOKUP = {
"git-branch": GitBranchLineIcon,
"git-commit": GitCommit,
"git-pull-request": GitPullRequest,
"git-repository": GitRepository,
"global-line": GlobalLineIcon,
"group-2-line": Group2LineIcon,
"group-line": GroupLineIcon,
Expand Down
Loading