/**
 * Copyright (c) 2016-present, NDLA.
 *
 * This source code is licensed under the GPLv3 license found in the
 * LICENSE file in the root directory of this source tree.
 *
 */

import React from 'react';
import PropTypes from 'prop-types';

const Download = ({ className }) => (
  <svg
    version="1"
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 32 32"
    className={className}>
    <path
      className="path1"
      d="M28 16h-5l-7 7-7-7h-5l-4 8v2h32v-2l-4-8zM0 28h32v2h-32v-2zM18 10v-8h-4v8h-7l9 9 9-9h-7z"
    />
  </svg>
);

Download.propTypes = {
  className: PropTypes.string.isRequired,
};

export default Download;
