Files
react-test/test/regressions/fixtures/Button/FontSvgIcons.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
565 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
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>
);
}