我知道我可以自定义标准的MUI组件,比如Button,但是我可以创建自己的MyCustomButton吗?它将具有'muiName' = 'MyCustomButton'
,并且可以通过主题配置进行自定义:
createTheme({
components: {
MyCustomButton: {
styleOverrides: {
root: {...},
MyCustomButtonSubComponent: {...}
}
}
}
})
谢谢你的回答!
1条答案
按热度按时间t3psigkw1#
你有几个选择。假设你想创建一个完全自定义的MUI按钮的行为按钮。
您可以使用
ButtonUnstyled
或useButton
钩子。https://mui.com/components/buttons/#unstyled