From 5f3ff10648e103172dac870b88cb4a2ce9bc11e3 Mon Sep 17 00:00:00 2001 From: lsh1202 Date: Thu, 1 Aug 2024 15:46:36 +0900 Subject: [PATCH] :bug: chevron button --- Sources/QDS/Component/Button/ChevronButton.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/QDS/Component/Button/ChevronButton.swift b/Sources/QDS/Component/Button/ChevronButton.swift index e43f234..019a372 100644 --- a/Sources/QDS/Component/Button/ChevronButton.swift +++ b/Sources/QDS/Component/Button/ChevronButton.swift @@ -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: {