From 4703961ba708dd90dd0709eed099c48fab96a0f7 Mon Sep 17 00:00:00 2001 From: Aminejv Date: Fri, 8 Oct 2021 17:34:07 +0100 Subject: [PATCH] feat(SVG): add ChevronUp CheckCircle XCircle AlertTriangle --- common/svg.js | 67 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 65 insertions(+), 2 deletions(-) diff --git a/common/svg.js b/common/svg.js index 9bbacb07..58252937 100644 --- a/common/svg.js +++ b/common/svg.js @@ -1160,6 +1160,20 @@ export const FilecoinLogo = (props) => ( ); +export const ChevronUp = (props) => { + return ( + + + + ); +}; + export const ChevronDown = (props) => { return ( ( xmlns="http://www.w3.org/2000/svg" {...props} > - + ( /> ); + +export const CheckCircle = (props) => ( + + + + +); + +export const XCircle = (props) => ( + + + +); + +export const AlertTriangle = (props) => ( + + + +);