locomotivecms/engine

View on GitHub
app/javascript/src/locomotive/editor/components/icons/edit.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

const Edit = props => (
  <svg width={18} height={17} viewBox="0 0 15 14" {...props}>
    <g fill="none" fillRule="evenodd">
      <path
        fill="#1c77c3"
        fillRule="nonzero"
        d="M10.84 1.836l2.238 2.248-5.664 5.692-2.237-2.248 5.663-5.692zm3.936-.543L13.778.291a.987.987 0 0 0-1.4 0l-.955.96L13.661 3.5l1.115-1.12a.77.77 0 0 0 0-1.087zm-10.77 9.395c-.04.184.125.35.308.305l2.494-.608L4.57 8.136l-.565 2.552z"
      />
      <path
        stroke="#1c77c3"
        strokeLinecap="round"
        d="M8.524 1.923H2.267a1 1 0 0 0-1 1v8.865a1 1 0 0 0 1 1h8.617a1 1 0 0 0 1-1V7.355"
      />
    </g>
  </svg>
);

export default Edit;