import ComponentLibrary
import Localization
import SwiftUI

// This isn't meant to be a reusable components but only specific to FeatureRemix
// Keep internal, not meant to be public.
struct NewLabel: View {
    var body: some View {
        Text(L10n.FeatureRemix.newLabel)
            .typographyV1(.subtitleSmall)
            .padding(.vertical, 2)
            .padding(.horizontal, 6)
            .background(.white)
            .clipShape(.rect(cornerRadius: 8))
    }
}

#Preview {
    ZStack {
        Color.black

        NewLabel()
    }
}
