From c8ea0304a1edb190ad190e635d8bfdaa919f3bf4 Mon Sep 17 00:00:00 2001 From: ivan B12 Date: Thu, 30 Nov 2023 14:02:01 +0600 Subject: [PATCH] Added Flows icon --- components/Icons.es6.js | 21 +++++++++++++++++++-- package.json | 2 +- src/react-demo/Icons.es6.js | 8 ++++++-- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/components/Icons.es6.js b/components/Icons.es6.js index a2bd411..721bf7b 100644 --- a/components/Icons.es6.js +++ b/components/Icons.es6.js @@ -1905,6 +1905,22 @@ function GlobeAlternative ({ className, width='16', height='16', color='#766bff' ) } +function Flows ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) { + return ( + + + + + + + + + + + + ) +} + const icons = [ Check, Checkmark, @@ -2094,7 +2110,8 @@ const icons = [ Webpage, LayoutAlternative, GlobeAlternative, - AiAssist + AiAssist, + Flows ] each(icons, (icon) => { @@ -2121,5 +2138,5 @@ export { Check, Checkmark, Lock, Notice, Disabled, Help, Search, Draggable, Flag, Testimonials, Chart, Pause, HubspotLogo, AlignLeftV2, AlignRightV2, AlignCenterV2, AlignJustifyV2, Sidebar, Palette, Lightbox, Filter, Slider, Flash, Dashboard, Guides, Article, Pulse, Edit, ContentApproved, Dragger, PaperClip, Invoicing, Banking, Checkbox, Circle, Bank, Card, Contract, MinusCircle, RepeatCircle, BadgeCard, HeadphonesMic, CheckmarkLarge, NoticeOutlined, Archive, Questionnaire, Upload, ShareFeedback, Spaceship, Zap, Tip, - Webpage, LayoutAlternative, GlobeAlternative, AiAssist + Webpage, LayoutAlternative, GlobeAlternative, AiAssist, Flows } diff --git a/package.json b/package.json index c5a938d..844dc62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@b12/metronome", - "version": "1.1.16", + "version": "1.1.17", "description": "", "main": "index.es6.js", "scripts": { diff --git a/src/react-demo/Icons.es6.js b/src/react-demo/Icons.es6.js index 175def9..49bcfee 100644 --- a/src/react-demo/Icons.es6.js +++ b/src/react-demo/Icons.es6.js @@ -21,7 +21,7 @@ import { Flag, Testimonials, Chart, Play, Pause, AlignLeftV2, AlignCenterV2, AlignRightV2, AlignJustifyV2, Sidebar, ArrowCircle, Palette, Lightbox, Filter, Slider, Flash, Dashboard, Guides, Article, Pulse, Edit, ContentApproved, Dragger, PaperClip, Invoicing, Banking, Checkbox, Circle, Bank, Card, Contract, MinusCircle, RepeatCircle, BadgeCard, HeadphonesMic, CheckmarkLarge, NoticeOutlined, Archive, Questionnaire, Upload, ShareFeedback, Spaceship, Zap, Tip, Webpage, LayoutAlternative, GlobeAlternative, - AiAssist + AiAssist, Flows } from '../../components/Icons.es6.js' const ICONS = [ @@ -310,7 +310,6 @@ const ICONS = [ component: Customer }, { - name: 'Event', component: Event }, { @@ -736,6 +735,10 @@ const ICONS = [ { name: 'AiAssist', component: AiAssist + }, + { + name: 'Flows', + component: Flows } ] @@ -749,6 +752,7 @@ function Icons () { }) return ( +

Icons

Icons can be used almost in any component. All icons are in SVG format.