Thread for above discussion :thread-please:
# javascript
f
Thread for above discussion 🧵
@AnimusNull Looks like
Fab
just bypasses its props to button: https://github.com/dimik/react-material-web-components/blob/master/src/Fab/Fab.js#L50 So you can add button attributes just like any other props, but you need to add types for those you use
Copy code
external interface FabProps : RProps {
    var mini: Boolean,
    var disabled: Boolean
}
val Fab: RClass<FabProps> = reactMaterialWebComponents.Fab