box-ui-elements-mlh
Version: 
25 lines (20 loc) • 670 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconDownloadSolid = ({ className = '', color = '#000000', height = 10, title, width = 10 }: Icon) => (
    <AccessibleSVG
        className={`icon-download-solid ${className}`}
        height={height}
        title={title}
        viewBox="0 0 10 10"
        width={width}
    >
        <path
            className="fill-color"
            d="M9.658 4.304H7.143V.634h-3.77v3.67H.857l4.4 4.283 4.4-4.283zM.858 9.81v1.224h8.8V9.81h-8.8z"
            fill={color}
        />
    </AccessibleSVG>
);
export default IconDownloadSolid;