import { alpha } from '@mui/system'; interface Props { lineColor: string; x: number; y: number; } const Point = ({ lineColor, x, y }: Props): JSX.Element => ( ); export default Point;