import Foundation
import SwiftUI

protocol ShareButtonConfigurable: Identifiable {
    associatedtype Icon: View

    @ViewBuilder var icon: Icon { get }
    var title: String { get }
    var requiresVideoRendering: Bool { get }
}
