import React from "react";

import { SvgIcon, SvgIconProps } from "@mui/material";

const AreaChartIcon = (props: SvgIconProps) => (
  <SvgIcon {...props} viewBox="0 0 24 24">
    <path d="M3 17L9 10L14 15L21 7V15Q21 17 19 17H3Z" fill="currentColor" opacity="0.4" />
    <path
      d="M4 16L9 10L14 15L20 8"
      fill="none"
      stroke="currentColor"
      strokeLinecap="round"
      strokeLinejoin="round"
      strokeWidth="2"
    />
  </SvgIcon>
);

export default AreaChartIcon;
