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'