### Install MUI Core
Source: https://mui.com/docs/material-ui
Installs the necessary packages for MUI Core, including the Material UI components and styling solutions like Emotion.
```bash
npm install @mui/material @emotion/react @emotion/styled
```
--------------------------------
### MUI Core Button Examples
Source: https://mui.com/docs/material-ui
Demonstrates the usage of MUI Core's Button component with different variants (text, contained, outlined) and including an icon.
```jsx
}>
Add item
}>
Add item
}>
Add item
```
--------------------------------
### MUI Core Theming and Card Component Example
Source: https://mui.com/docs/material-ui
Illustrates the use of MUI Core's Card component with custom styling and theming capabilities. It includes a media element, typography, and interactive controls.
```jsx
Contemplative Reptile
Sounds of Nature
setPaused((val) => !val)}
sx={{ mx: 1 }}
>
{paused ? : }
```
--------------------------------
### Styling a Card Component with MUI SX Prop
Source: https://mui.com/docs/material-ui
Demonstrates how to use the `sx` prop in Material UI to style a `Card` component, including nested elements like `CardMedia`, `Box`, `Typography`, and `Chip`. It shows the integration of theme tokens and responsive styles for layout and appearance. This example leverages MUI's styling system for a consistent and flexible UI.
```jsx
123 Main St, Phoenix, AZ, USA
$280k - $310k
}
label="Confidence score: 85%"
sx={(theme) => ({
'.MuiChip-icon': { fontSize: 16, ml: '4px', color: 'success.500' },
bgcolor: 'success.50',
borderColor: 'success.100',
color: 'success.900',
...theme.applyDarkStyles({
bgcolor: 'primaryDark.700',
color: 'success.200',
borderColor: 'success.900',
}),
})}
/>
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.