forked from github/plane
24 lines
970 B
TypeScript
24 lines
970 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
import type { Props } from "./types";
|
||
|
|
||
|
export const PencilScribbleIcon: React.FC<Props> = ({
|
||
|
width = "20",
|
||
|
height = "20",
|
||
|
className,
|
||
|
color = "#000000",
|
||
|
}) => (
|
||
|
<svg
|
||
|
width={width}
|
||
|
height={height}
|
||
|
className={className}
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
viewBox="0 96 960 960"
|
||
|
>
|
||
|
<path
|
||
|
d="M560 936q-12 0-21-9t-9-21q0-13 9-21.5t21-8.5q59 0 99.5-24t40.5-56q0-23-29.5-45T591 717l47-47q63 19 92.5 52.5T760 796q0 67-61 103.5T560 936ZM240 642q-64-14-92-44t-28-62q0-35 26-63t120-62q66-24 85-39t19-35q0-25-22-43t-68-18q-27 0-46 7t-34 22q-8 8-20.5 9.5T157 308q-11-8-11.5-20t7.5-21q17-22 51-36.5t76-14.5q68 0 109 32.5t41 88.5q0 41-28.5 69.5T290 466q-67 25-88.5 39.5T180 536q0 16 27 30.5t81 27.5l-48 48Zm496-154L608 360l45-45q18-18 40-18t40 18l48 48q18 18 18 40t-18 40l-45 45ZM220 876h42l345-345-42-42-345 345v42Zm-60 60V808l405-405 128 128-405 405H160Zm405-447 42 42-42-42Z"
|
||
|
fill={color}
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|