snow-editor

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

ShareIcon.jsx (379B)


      1 import { ICON_PROPS } from './iconProps.js';
      2 
      3 export default function ShareIcon({ className }) {
      4   return (
      5     <svg {...ICON_PROPS} className={className}>
      6       <circle cx="18" cy="5" r="2.25" />
      7       <circle cx="6" cy="12" r="2.25" />
      8       <circle cx="18" cy="19" r="2.25" />
      9       <path d="M8.25 10.75 15.5 6.5" />
     10       <path d="M8.25 13.25 15.5 17.5" />
     11     </svg>
     12   );
     13 }