All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.udash.css.CssStringRenderer.scala Maven / Gradle / Ivy

package io.udash.css

import scalacss.internal.Renderer

/** Renders provided styles into `String`. Keeps styles order from provided `Seq`. */
class CssStringRenderer(styles: Seq[CssBase]) {
  def render()(implicit renderer: Renderer[String]): String = {
    val builder = new StringBuilder

    styles.foreach { style =>
      builder.append(style.render)
    }

    builder.mkString
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy