From 66ce5fda94afd6fac694271b1d934effd3022dab Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 11 Dec 2024 12:00:37 +0930 Subject: [PATCH] feat(component): add git icon ref: #18 #34 --- src/components/IconLoader.jsx | 2 ++ src/components/icons/Git.jsx | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/components/icons/Git.jsx diff --git a/src/components/IconLoader.jsx b/src/components/IconLoader.jsx index 51509405..6a1c724f 100644 --- a/src/components/IconLoader.jsx +++ b/src/components/IconLoader.jsx @@ -51,6 +51,7 @@ import TicketIncident from "./icons/TicketIncident"; import TicketProblem from "./icons/TicketProblem"; import TicketChange from "./icons/TicketChange"; import Documentation from "./icons/documentation"; +import Git from "./icons/Git"; const icon_components = { @@ -71,6 +72,7 @@ const icon_components = { delete: DeleteIcon, device: DeviceIcon, edit: EditIcon, + git: Git, help: HelpIcon, history: HistoryIcon, information: InformationIcon, diff --git a/src/components/icons/Git.jsx b/src/components/icons/Git.jsx new file mode 100644 index 00000000..92c322b3 --- /dev/null +++ b/src/components/icons/Git.jsx @@ -0,0 +1,14 @@ +const Git = ({ + width = '20px', + height = '20px', + fill = '#FFF' +}) => { + + return ( + + + + ); +} + +export default Git \ No newline at end of file