Files
react-test/docs/data/system/getting-started/custom-components/custom-components.md
how2ice 005cf56baf
Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
init project
2025-12-12 14:26:25 +09:00

977 B

Custom components

Learn how to use MUI System with custom components.

Using sx with custom components

Normally you would use the Box component at the root of your component tree in order to work with the sx prop. If you want to use sx with fully custom (non-MUI) components, you can do so with the unstable_styleFunctionSx utility. This gives you all the same capabilities, and with a smaller bundle size.

The following demo shows how to implement this utility:

{{"demo": "StyleFunctionSxDemo.js"}}

Using standalone system utilities

If you only need specific style functions from the sx prop, you can import them individually rather than pulling in the entire package. This is useful if you need to optimize for the smallest bundle size possible.

The demo below illustrates how this works:

{{"demo": "CombiningStyleFunctionsDemo.js", "defaultCodeOpen": true}}