Skip to content

Commit

Permalink
🐛 chevron button
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh1202 committed Aug 1, 2024
1 parent 494dbd2 commit 5f3ff10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/QDS/Component/Button/ChevronButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import SwiftUI
public struct ChevronButton: View {
let action: () -> ()

init(action: @escaping () -> Void) {
public init(action: @escaping () -> Void) {
self.action = action
}

var body: some View {
public var body: some View {
Button {
action()
} label: {
Expand Down

0 comments on commit 5f3ff10

Please sign in to comment.