We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a5d3e commit 2b86abbCopy full SHA for 2b86abb
1 file changed
Tool/Sources/SharedUIComponents/CopyButton.swift
@@ -22,7 +22,7 @@ public struct CopyButton: View {
22
}
23
24
}) {
25
- Image(systemName: isCopied ? "checkmark.circle" : "doc.on.doc")
+ Image(systemName: isCopied ? "checkmark.circle.fill" : "doc.on.doc.fill")
26
.resizable()
27
.aspectRatio(contentMode: .fit)
28
.frame(width: 14, height: 14)
@@ -32,6 +32,10 @@ public struct CopyButton: View {
32
.regularMaterial,
33
in: RoundedRectangle(cornerRadius: 4, style: .circular)
34
)
35
+ .background {
36
+ RoundedRectangle(cornerRadius: 4, style: .circular)
37
+ .fill(Color.primary.opacity(0.1))
38
+ }
39
.padding(4)
40
41
.buttonStyle(.borderless)
0 commit comments