override fun equals()

in html/core/src/jsMain/kotlin/org/jetbrains/compose/web/css/properties/border.kt [14:18]


    override fun equals(other: Any?): Boolean {
        return if (other is CSSBorder) {
            width == other.width && style == other.style && color == other.color
        } else false
    }