Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions components/Icons.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -1931,6 +1931,16 @@ function Highlight ({ className, width='16', height='16', color = '#766bff', vie
)
}

function ArrowCircleUp ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} fill="none" viewBox={viewBox} className={className}>
<path fill={color} fillRule="evenodd" d="M9 4.818v7H7v-7h2Z" clipRule="evenodd"/>
<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"/>
<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"/>
</svg>
)
}

const icons = [
Check,
Checkmark,
Expand Down Expand Up @@ -2122,7 +2132,8 @@ const icons = [
GlobeAlternative,
AiAssist,
Flows,
Highlight
Highlight,
ArrowCircleUp
]

each(icons, (icon) => {
Expand All @@ -2149,5 +2160,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, Flows, Highlight
Webpage, LayoutAlternative, GlobeAlternative, AiAssist, Flows, Highlight, ArrowCircleUp
}
6 changes: 5 additions & 1 deletion src/react-demo/Icons.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -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, Flows, Highlight
AiAssist, Flows, Highlight, ArrowCircleUp,
} from '../../components/Icons.es6.js'

const ICONS = [
Expand Down Expand Up @@ -743,6 +743,10 @@ const ICONS = [
{
name: 'Highlight',
component: Highlight
},
{
name: 'ArrowCircleUp',
component: ArrowCircleUp
}
]

Expand Down
Loading