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
27 lines
755 B
TypeScript
27 lines
755 B
TypeScript
import Box from '@mui/material/Box';
|
|
import Fab from '@mui/material/Fab';
|
|
import AddIcon from '@mui/icons-material/Add';
|
|
import EditIcon from '@mui/icons-material/Edit';
|
|
import FavoriteIcon from '@mui/icons-material/Favorite';
|
|
import NavigationIcon from '@mui/icons-material/Navigation';
|
|
|
|
export default function FloatingActionButtons() {
|
|
return (
|
|
<Box sx={{ '& > :not(style)': { m: 1 } }}>
|
|
<Fab color="primary" aria-label="add">
|
|
<AddIcon />
|
|
</Fab>
|
|
<Fab color="secondary" aria-label="edit">
|
|
<EditIcon />
|
|
</Fab>
|
|
<Fab variant="extended">
|
|
<NavigationIcon sx={{ mr: 1 }} />
|
|
Navigate
|
|
</Fab>
|
|
<Fab disabled aria-label="like">
|
|
<FavoriteIcon />
|
|
</Fab>
|
|
</Box>
|
|
);
|
|
}
|