frontAnswerer/src/assets/icons/questionsPage/addPlus.tsx

27 lines
722 B
TypeScript
Executable File

import { Box } from "@mui/material";
// interface Props {
// color: string;
// }
export default function AddPlus() {
return (
<Box
sx={{
height: "38px",
width: "45px",
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
>
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="22" cy="22" r="22" fill="#FB5607"/>
<path d="M22 10V34" stroke="white" strokeWidth="2"/>
<path d="M10 22H34" stroke="white" strokeWidth="2"/>
</svg>
</Box>
);
}