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
25 lines
565 B
JavaScript
25 lines
565 B
JavaScript
import * as React from 'react';
|
|
import Fab from '@mui/material/Fab';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
import Icon from '@mui/material/Icon';
|
|
|
|
export default function FontSvgIcons() {
|
|
return (
|
|
<div>
|
|
<Fab color="primary">
|
|
<DeleteIcon />
|
|
</Fab>
|
|
<Fab color="primary">
|
|
<Icon>delete_icon</Icon>
|
|
</Fab>
|
|
<IconButton>
|
|
<DeleteIcon />
|
|
</IconButton>
|
|
<IconButton>
|
|
<Icon>delete_icon</Icon>
|
|
</IconButton>
|
|
</div>
|
|
);
|
|
}
|