7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
import { styled } from "@mui/material";
|
|
import Image from "next/image";
|
|
|
|
const StyledImage = styled(Image)``;
|
|
|
|
export default StyledImage;
|