DEV Community

Cover image for Easy to customise frontend UI library
shrey vijayvargiya
shrey vijayvargiya

Posted on

Easy to customise frontend UI library

I have used more than 10 UI libraries and each of have a time-consuming process to customise the styles except
@mantinedev, here is the reason how.

Introduction to mantine dev, the easy to customise UI library

Conclusion
Until next time, have a good day.

Keep developing!!

Our website iHateReading || Youtube || Twitter

Top comments (1)

Collapse
 
brense profile image
Rense Bakker

Thats comparing apples and elephants... In the video you show a complicated way of customizing MUI styles of nested elements with a specific state, however for mantine you only show simple style overrides directly to the component itself, this is similarly easy to do in MUI with the sx prop:

import { Box } from '@mui/material'
<Box sx={{ mt: 2, p: 1, bgcolor: 'primary.main' }}>Hello world!</Box>
Enter fullscreen mode Exit fullscreen mode

In short, you're showing that MUI is capable of doing things that mantine can't do and you do not show that doing simple things in mantine is just as simple as in MUI