import SwiftUI

/// A button style that applies no additional styling to the button.
/// Different from plain button style as it does not fade on press
public struct CleanButtonStyle: ButtonStyle {
    public init() {}

    public func makeBody(configuration: Self.Configuration) -> some View {
        configuration.label
    }
}
