import { Box } from "@mui/material"; interface Props { height: string; width: string; color: string; } export default function ContactBookIcon({ height, width,color }: Props) { return ( ); }