From a5a764e5c416a056513f15a2bd3f525153012e80 Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Sun, 20 Apr 2025 09:16:20 +0200 Subject: [PATCH] Format code --- src/assets/Icons/LogoutIcon.tsx | 30 ++++++++++++++++++------------ src/assets/Icons/ThreadsIcon.tsx | 31 ++++++++++++++++++------------- src/assets/Icons/TradingIcon.tsx | 27 ++++++++++++++++----------- 3 files changed, 52 insertions(+), 36 deletions(-) diff --git a/src/assets/Icons/LogoutIcon.tsx b/src/assets/Icons/LogoutIcon.tsx index 30334f4..d1a4408 100644 --- a/src/assets/Icons/LogoutIcon.tsx +++ b/src/assets/Icons/LogoutIcon.tsx @@ -1,12 +1,18 @@ -import React from 'react'; - -export const LogoutIcon= ({ color, height = 20, width = 18}) => { - return ( - - - - - - ); - }; - \ No newline at end of file +export const LogoutIcon = ({ color, height = 20, width = 18 }) => { + return ( + + + + ); +}; diff --git a/src/assets/Icons/ThreadsIcon.tsx b/src/assets/Icons/ThreadsIcon.tsx index 3cf02cc..ed45696 100644 --- a/src/assets/Icons/ThreadsIcon.tsx +++ b/src/assets/Icons/ThreadsIcon.tsx @@ -1,13 +1,18 @@ -import React from 'react'; - -export const ThreadsIcon= ({ color = 'white', height = 11, width = 15 }) => { - return ( - - - - - - - ); - }; - \ No newline at end of file +export const ThreadsIcon = ({ color = 'white', height = 11, width = 15 }) => { + return ( + + + + ); +}; diff --git a/src/assets/Icons/TradingIcon.tsx b/src/assets/Icons/TradingIcon.tsx index 2c72300..e6723da 100644 --- a/src/assets/Icons/TradingIcon.tsx +++ b/src/assets/Icons/TradingIcon.tsx @@ -1,11 +1,16 @@ -import React from 'react'; - -export const TradingIcon= ({ color, height, width }) => { - return ( - - - - - ); - }; - \ No newline at end of file +export const TradingIcon = ({ color, height, width }) => { + return ( + + + + ); +};