box-ui-elements
Version:
Box UI Elements
23 lines (18 loc) • 778 B
Flow
// @flow
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
import type { Icon } from '../flowTypes';
const IconRecentFiles = ({ className = '', color = '#999', height = 24, title, width = 24 }: Icon) => (
<AccessibleSVG
className={`icon-recent-files ${className}`}
height={height}
title={title}
viewBox="0 0 24 24"
width={width}
>
<path className="fill-color" d="M17 20l-3 2H5c-2 0-3-1-3-3V7l2-3v15l1 1h12z" fill={color} />
<path className="fill-color" d="M8 0h7l1 1 4 4 1 1v10l-2 2H8l-2-2V2l2-2z" fill={color} />
<path d="M13 5v5m4 0h-4" stroke="#FFF" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} />
</AccessibleSVG>
);
export default IconRecentFiles;