mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
feat: add line shape (#371)
* feat: add line shape * fix: align line tool * fix: hitbox bug sw to ne * fix: add stroke width n sloppiness for line * fix: center line inside a panel box * fix: use color as a unique key
This commit is contained in:
parent
42968ef44d
commit
8db8827c6f
8 changed files with 61 additions and 5 deletions
|
@ -55,6 +55,22 @@ export const SHAPES = [
|
|||
</svg>
|
||||
),
|
||||
value: "text"
|
||||
},
|
||||
{
|
||||
icon: (
|
||||
// custom
|
||||
<svg viewBox="0 0 6 6">
|
||||
<line
|
||||
x1="0"
|
||||
y1="3"
|
||||
x2="6"
|
||||
y2="3"
|
||||
stroke="black"
|
||||
strokeLinecap="round"
|
||||
/>
|
||||
</svg>
|
||||
),
|
||||
value: "line"
|
||||
}
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue