Skip to content

Commit baf9b41

Browse files
committed
fix: Rename More to ThreeDots and removed Nav icon
1 parent 7b1fc8d commit baf9b41

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

components/Icons.es6.js

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,7 +1988,7 @@ function Microphone ({ className, width='16', height='16', color = '#766bff', vi
19881988
)
19891989
}
19901990

1991-
function More ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) {
1991+
function ThreeDots ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) {
19921992
return (
19931993
<svg width={width} height={height} viewBox={viewBox} fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
19941994
<circle cx="3" cy="8" r="1.5" fill={color} />
@@ -2006,14 +2006,6 @@ function PencilFilled ({ className, width='16', height='16', color = '#766bff',
20062006
)
20072007
}
20082008

2009-
function Nav ({ className, width='16', height='16', color = '#766bff', viewBox='0 0 16 16' }) {
2010-
return (
2011-
<svg width={width} height={height} viewBox={viewBox} fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
2012-
<path fillRule="evenodd" clipRule="evenodd" d="M11.2 4.375H13.125C13.65 4.375 14 4.725 14 5.25V13.125C14 13.65 13.65 14 13.125 14H5.25C4.725 14 4.375 13.65 4.375 13.125V11.2C1.8375 10.5875 0 8.4 0 5.6875C0 2.5375 2.5375 0 5.6875 0C8.3125 0 10.5875 1.8375 11.2 4.375ZM5.6875 1.75C3.5 1.75 1.75 3.5 1.75 5.6875C1.75 7.4375 2.8875 8.8375 4.375 9.3625V5.25C4.375 4.725 4.725 4.375 5.25 4.375H9.3625C8.8375 2.8875 7.4375 1.75 5.6875 1.75ZM9.5375 6.125C9.3625 7.9625 7.875 9.3625 6.125 9.5375V6.125H9.5375ZM6.125 12.25H12.25V6.125H11.375C11.1125 8.925 8.925 11.2 6.125 11.375V12.25Z" fill={color}/>
2013-
</svg>
2014-
)
2015-
}
2016-
20172009
const icons = [
20182010
Check,
20192011
Checkmark,
@@ -2212,9 +2204,8 @@ const icons = [
22122204
AiImage,
22132205
AiLogo,
22142206
Microphone,
2215-
More,
2216-
PencilFilled,
2217-
Nav
2207+
ThreeDots,
2208+
PencilFilled
22182209
]
22192210

22202211
each(icons, (icon) => {
@@ -2242,5 +2233,5 @@ export { Check, Checkmark, Lock, Notice, Disabled, Help, Search, Draggable,
22422233
Flash, Dashboard, Guides, Article, Pulse, Edit, ContentApproved, Dragger, PaperClip, Invoicing, Banking, Checkbox, Circle, Bank, Card, Contract,
22432234
MinusCircle, RepeatCircle, BadgeCard, HeadphonesMic, CheckmarkLarge, NoticeOutlined, Archive, Questionnaire, Upload, ShareFeedback, Spaceship, Zap, Tip,
22442235
Webpage, LayoutAlternative, GlobeAlternative, AiAssist, Flows, Highlight, ArrowCircleUp, ArrowUp, EditColor, AiImage,
2245-
AiLogo, Microphone, More, PencilFilled, Nav
2236+
AiLogo, Microphone, ThreeDots, PencilFilled
22462237
}

src/react-demo/Icons.es6.js

Lines changed: 3 additions & 7 deletions
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, ArrowCircleUp, ArrowUp, EditColor, AiImage, AiLogo, Microphone, More, PencilFilled, Nav
24+
AiAssist, Flows, Highlight, ArrowCircleUp, ArrowUp, EditColor, AiImage, AiLogo, Microphone, ThreeDots, PencilFilled
2525
} from '../../components/Icons.es6.js'
2626

2727
const ICONS = [
@@ -769,16 +769,12 @@ const ICONS = [
769769
component: Microphone
770770
},
771771
{
772-
name: 'More',
773-
component: More
772+
name: 'ThreeDots',
773+
component: ThreeDots
774774
},
775775
{
776776
name: 'PencilFilled',
777777
component: PencilFilled
778-
},
779-
{
780-
name: 'Nav',
781-
component: Nav
782778
}
783779
]
784780

0 commit comments

Comments
 (0)