import React from "react"; import { useTheme } from "@material-ui/core"; const HitachiLogo: React.FC<{ style: { width: number; height: number }; }> = (props) => { const theme = useTheme(); const color = theme.hv.palette.accent.acce1; return ( ); }; export default HitachiLogo;