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 | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 600d693a9f..4d4fd57084 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 1244c364b0..1bddbdbb45 100644 --- a/src/shapes.tsx +++ b/src/shapes.tsx @@ -49,21 +49,21 @@ export const SHAPES = [ }, { icon: ( - // fa-font - - + // custom + + ), - value: "text" + value: "line" }, { icon: ( - // custom - - + // fa-font + + ), - value: "line" + value: "text" } ];