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

main.react.css.css.kt Maven / Gradle / Ivy

package react.css

import csstype.ClassName
import csstype.PropertiesBuilder
import emotion.react.css
import react.PropsWithClassName

@Deprecated(
    message = "Will be removed soon! Use `emotion.react.css` instead.",
)
inline fun PropsWithClassName.css(
    crossinline block: PropertiesBuilder.() -> Unit,
) {
    css(block)
}

@Deprecated(
    message = "Will be removed soon! Use `emotion.react.css` instead.",
)
inline fun PropsWithClassName.css(
    vararg classNames: ClassName?,
    crossinline block: PropertiesBuilder.() -> Unit,
) {
    css(classNames = classNames, block)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy