From 0d056116f069f8447c43601381e33c8629cc0979 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Tue, 14 Feb 2023 15:41:42 +0100 Subject: [PATCH] feat: Add robot icon (#409) --- src/components/icons/RobotIcon.tsx | 62 ++++++++++++++++++++++++++++++ src/icons.ts | 1 + 2 files changed, 63 insertions(+) create mode 100644 src/components/icons/RobotIcon.tsx diff --git a/src/components/icons/RobotIcon.tsx b/src/components/icons/RobotIcon.tsx new file mode 100644 index 00000000..c5b4dccc --- /dev/null +++ b/src/components/icons/RobotIcon.tsx @@ -0,0 +1,62 @@ +import createIcon from './createIcon' + +export default createIcon(({ size, color }) => ( + + + + + + + + + + + + + + + + + + +)) diff --git a/src/icons.ts b/src/icons.ts index ed9b4085..07fb0666 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -118,6 +118,7 @@ export { default as PlusIcon } from './components/icons/PlusIcon' export { default as PushPinIcon } from './components/icons/PushPinIcon' export { default as ReloadIcon } from './components/icons/ReloadIcon' export { default as ReturnIcon } from './components/icons/ReturnIcon' +export { default as RobotIcon } from './components/icons/RobotIcon' export { default as RocketIcon } from './components/icons/RocketIcon' export { default as RunBookIcon } from './components/icons/RunBookIcon' export { default as ScrollIcon } from './components/icons/ScrollIcon'