import { lightLine, smoke } from '@/styles/colors';
import styled from '@emotion/styled';

const GridAnimationWrapper = styled.div`
  background: ${lightLine};
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
`;

const File = styled.div`
  height: 100px;
  width: 100px;
  background-color: ${smoke};
  clip-path: polygon(0 0, 75% 0, 100% 25%, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Montreal;
  h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
  }
`;

const MidiExport = () => {
  return (
    <GridAnimationWrapper>
      <File>
        <h1>.mid</h1>
      </File>
    </GridAnimationWrapper>
  );
};

export default MidiExport;
