Created the BulletItem.jsx

This commit is contained in:
Mathias Wagner 2023-07-07 01:09:57 +02:00
parent 0049060eff
commit 45464127d3
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,9 @@
import {ListItem, Typography} from "@mui/material";
import {Circle} from "@mui/icons-material";
export const BulletItem = ({text}) => (
<ListItem>
<Circle sx={{color: "primary.main", mr: 2, fontSize: 16}} />
<Typography variant="h5" fontWeight={600}>{text}</Typography>
</ListItem>
)