import SwiftUI

struct CreateMoreButton: View {
    let onTap: () -> Void

    var body: some View {
        MediumButton.aura("Create more", leftIconAssetName: "Icon/create", action: onTap)
    }
}

#Preview {
    CreateMoreButton {
        print("Create more tapped")
    }
    .padding()
    .background(Constants.Colors.Background.primary)
}