From 58c3700bbc8b947eddf0ae33e0eb2f6881bc3c47 Mon Sep 17 00:00:00 2001 From: Aminejvm Date: Wed, 24 Mar 2021 18:22:39 +0100 Subject: [PATCH] added alignments icons --- common/svg.js | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/common/svg.js b/common/svg.js index d8e7a0e5..7f49951c 100644 --- a/common/svg.js +++ b/common/svg.js @@ -1765,3 +1765,59 @@ export const Sliders = (props) => ( /> ); + +export const AlignLeft = (props) => ( + + + +); + +export const AlignCenter = (props) => ( + + + +); +export const AlignRight = (props) => ( + + + +);