I'm using MUIv5 and looking at this documentation, it's still unclear the difference between @mui/material vs @mui/system.
This is mainly in the context of using the styled(link) utility.
I've noticed they use both (interchangeably):
import { styled } from '@mui/material/styles';
import { styled } from '@mui/system';
What's the difference/in what context should I use each of them?