19 lines
439 B
JavaScript
19 lines
439 B
JavaScript
import React from 'react';
|
|
|
|
const DraftIcon = (props) => (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={24}
|
|
height={24}
|
|
viewBox="0 -960 960 960"
|
|
{...props}
|
|
>
|
|
<path
|
|
d="M240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520v-200H240v640h480v-440H520ZM240-800v200-200 640-640Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default DraftIcon;
|