Skip to content

Commit aa3ee4e

Browse files
authored
feat: ArrowCircleUp icon (#78)
1 parent efa0ed5 commit aa3ee4e

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

components/Icons.es6.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1931,6 +1931,16 @@ function Highlight ({ className, width='16', height='16', color = '#766bff', vie
19311931
)
19321932
}
19331933

1934+
function ArrowCircleUp ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) {
1935+
return (
1936+
<svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} fill="none" viewBox={viewBox} className={className}>
1937+
<path fill={color} fillRule="evenodd" d="M9 4.818v7H7v-7h2Z" clipRule="evenodd"/>
1938+
<path fill={color} fillRule="evenodd" d="m8 3.404 3.96 3.96-1.415 1.414L8 6.232 5.455 8.778 4.04 7.364 8 3.404Z" clipRule="evenodd"/>
1939+
<path fill={color} fillRule="evenodd" d="M8 2a6 6 0 1 0 0 12A6 6 0 0 0 8 2ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Z" clipRule="evenodd"/>
1940+
</svg>
1941+
)
1942+
}
1943+
19341944
const icons = [
19351945
Check,
19361946
Checkmark,
@@ -2122,7 +2132,8 @@ const icons = [
21222132
GlobeAlternative,
21232133
AiAssist,
21242134
Flows,
2125-
Highlight
2135+
Highlight,
2136+
ArrowCircleUp
21262137
]
21272138

21282139
each(icons, (icon) => {
@@ -2149,5 +2160,5 @@ export { Check, Checkmark, Lock, Notice, Disabled, Help, Search, Draggable,
21492160
Flag, Testimonials, Chart, Pause, HubspotLogo, AlignLeftV2, AlignRightV2, AlignCenterV2, AlignJustifyV2, Sidebar, Palette, Lightbox, Filter, Slider,
21502161
Flash, Dashboard, Guides, Article, Pulse, Edit, ContentApproved, Dragger, PaperClip, Invoicing, Banking, Checkbox, Circle, Bank, Card, Contract,
21512162
MinusCircle, RepeatCircle, BadgeCard, HeadphonesMic, CheckmarkLarge, NoticeOutlined, Archive, Questionnaire, Upload, ShareFeedback, Spaceship, Zap, Tip,
2152-
Webpage, LayoutAlternative, GlobeAlternative, AiAssist, Flows, Highlight
2163+
Webpage, LayoutAlternative, GlobeAlternative, AiAssist, Flows, Highlight, ArrowCircleUp
21532164
}

src/react-demo/Icons.es6.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
Flag, Testimonials, Chart, Play, Pause, AlignLeftV2, AlignCenterV2, AlignRightV2, AlignJustifyV2, Sidebar, ArrowCircle, Palette, Lightbox, Filter, Slider,
2222
Flash, Dashboard, Guides, Article, Pulse, Edit, ContentApproved, Dragger, PaperClip, Invoicing, Banking, Checkbox, Circle, Bank, Card, Contract,
2323
MinusCircle, RepeatCircle, BadgeCard, HeadphonesMic, CheckmarkLarge, NoticeOutlined, Archive, Questionnaire, Upload, ShareFeedback, Spaceship, Zap, Tip, Webpage, LayoutAlternative, GlobeAlternative,
24-
AiAssist, Flows, Highlight
24+
AiAssist, Flows, Highlight, ArrowCircleUp,
2525
} from '../../components/Icons.es6.js'
2626

2727
const ICONS = [
@@ -743,6 +743,10 @@ const ICONS = [
743743
{
744744
name: 'Highlight',
745745
component: Highlight
746+
},
747+
{
748+
name: 'ArrowCircleUp',
749+
component: ArrowCircleUp
746750
}
747751
]
748752

0 commit comments

Comments
 (0)