Skip to content

Commit 9a94c84

Browse files
authored
Merge pull request #7 from zuziakaxel/feature/custom-chevron-up-down
Added new symbol: CustomChevronUpChevronDown
2 parents 9a33d8e + 1f5a408 commit 9a94c84

File tree

3 files changed

+234
-1
lines changed

3 files changed

+234
-1
lines changed

Sources/CodeEditSymbols/CodeEditSymbols.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public extension Image {
2222
static let checkout: Image = .init(symbol: "checkout")
2323
static let breakpoint: Image = .init(symbol: "breakpoint")
2424
static let breakpoint_fill: Image = .init(symbol: "breakpoint.fill")
25+
static let customChevronUpChevronDown: Image = .init(symbol: "custom.chevron.up.chevron.down")
2526

2627
// add static properties for your symbols above this line
2728

@@ -45,7 +46,8 @@ public extension NSImage {
4546
static let checkout: NSImage = .symbol(named: "checkout")
4647
static let breakpoint: NSImage = .symbol(named: "breakpoint")
4748
static let breakpoint_fill: NSImage = .symbol(named: "breakpoint.fill")
48-
49+
static let customChevronUpChevronDown: NSImage = .symbol(named: "custom.chevron.up.chevron.down")
50+
4951
// add static properties for your symbols above this line
5052

5153
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"info" : {
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"symbols" : [
7+
{
8+
"filename" : "custom.chevron.up.chevron.down.svg",
9+
"idiom" : "universal"
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)