SwiftUI NavigationLink displaying as a button macOS

Hello! I was wondering if there was a way to make a NavigationLink in SwiftUI show up with a cusoum look that's not just the defaualt macOS button. (See attached photos). Thanks!

Apply either of these two modifiers to the NavigationLink:

.buttonStyle(.plain)
.buttonStyle(.borderless)
SwiftUI NavigationLink displaying as a button macOS
 
 
Q