snow-editor

small markdown and org-mode editor
Log | Files | Refs | README

DownloadIcon.jsx (321B)


      1 import { ICON_PROPS } from './iconProps.js';
      2 
      3 export default function DownloadIcon({ className }) {
      4   return (
      5     <svg {...ICON_PROPS} className={className}>
      6       <path d="M12 3.5v10.25" />
      7       <path d="M8.25 10 12 13.75 15.75 10" />
      8       <path d="M5.5 17.75h13" />
      9       <path d="M7.5 20.25h9" />
     10     </svg>
     11   );
     12 }