import { Box, useTheme } from "@mui/material"; interface Props { color?: string; } export default function VkIconButton({ color }: Props) { const theme = useTheme(); return ( ); }