From 61d5615a81e92517a2c2d8156981192c97c9490a Mon Sep 17 00:00:00 2001 From: Lipis Date: Sat, 18 Jan 2020 01:55:13 +0200 Subject: [PATCH] Change order of Text and Line (#435) --- package-lock.json | 2 +- src/shapes.tsx | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 600d693a..4d4fd570 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "react", + "name": "excalidraw", "version": "1.0.0", "lockfileVersion": 1, "requires": true, diff --git a/src/shapes.tsx b/src/shapes.tsx index 1244c364..1bddbdbb 100644 --- a/src/shapes.tsx +++ b/src/shapes.tsx @@ -47,15 +47,6 @@ export const SHAPES = [ ), value: "arrow" }, - { - icon: ( - // fa-font - - - - ), - value: "text" - }, { icon: ( // custom @@ -64,6 +55,15 @@ export const SHAPES = [ ), value: "line" + }, + { + icon: ( + // fa-font + + + + ), + value: "text" } ];