From 46f5e9bb7c0f5c9247a5e82cd69dcf9715257edf Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Tue, 28 May 2024 16:05:51 +0200 Subject: [PATCH] feat: Add Git commit icon (#598) --- src/components/icons/GitCommitIcon.tsx | 98 ++++++++++++++++++++++++++ src/icons.ts | 1 + 2 files changed, 99 insertions(+) create mode 100644 src/components/icons/GitCommitIcon.tsx diff --git a/src/components/icons/GitCommitIcon.tsx b/src/components/icons/GitCommitIcon.tsx new file mode 100644 index 00000000..278913b6 --- /dev/null +++ b/src/components/icons/GitCommitIcon.tsx @@ -0,0 +1,98 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + +)) diff --git a/src/icons.ts b/src/icons.ts index 79667fa2..ff06d2d5 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -79,6 +79,7 @@ export { default as FiltersIcon } from './components/icons/FiltersIcon' export { default as FingerPrintIcon } from './components/icons/FingerPrintIcon' export { default as FolderIcon } from './components/icons/FolderIcon' export { default as GearTrainIcon } from './components/icons/GearTrainIcon' +export { default as GitCommitIcon } from './components/icons/GitCommitIcon' export { default as GitHubIcon } from './components/icons/GitHubIcon' export { default as GitHubLogoIcon } from './components/icons/GitHubLogoIcon' export { default as GitLabLogoIcon } from './components/icons/GitLabLogoIcon'