From 871a85d9343cf49646d13dc455c062efadcb959a Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Sat, 12 Feb 2022 11:33:52 +0100 Subject: Beatified code --- src/components/Icons/Filter.tsx | 18 ++++++++++++------ src/components/Icons/Moon.tsx | 19 ++++++++++++------- src/components/Icons/Sliders.tsx | 21 +++++++++++++++------ src/components/Icons/Sun.tsx | 17 ++++++++++++----- src/components/Icons/Trash.tsx | 19 +++++++++++++------ 5 files changed, 64 insertions(+), 30 deletions(-) (limited to 'src/components/Icons') diff --git a/src/components/Icons/Filter.tsx b/src/components/Icons/Filter.tsx index a14183d..07796df 100644 --- a/src/components/Icons/Filter.tsx +++ b/src/components/Icons/Filter.tsx @@ -1,10 +1,16 @@ import * as React from "react"; export function Filter() { - return - - ; + return ( + + + + ); } diff --git a/src/components/Icons/Moon.tsx b/src/components/Icons/Moon.tsx index 7e3e680..303da04 100644 --- a/src/components/Icons/Moon.tsx +++ b/src/components/Icons/Moon.tsx @@ -1,11 +1,16 @@ import * as React from "react"; export function Moon() { - return - - ; + return ( + + + + ); } diff --git a/src/components/Icons/Sliders.tsx b/src/components/Icons/Sliders.tsx index 9feef34..36c632f 100644 --- a/src/components/Icons/Sliders.tsx +++ b/src/components/Icons/Sliders.tsx @@ -1,10 +1,19 @@ import * as React from "react"; export function Sliders() { - return - - ; + return ( + + + + ); } diff --git a/src/components/Icons/Sun.tsx b/src/components/Icons/Sun.tsx index 93a5187..f1e37a6 100644 --- a/src/components/Icons/Sun.tsx +++ b/src/components/Icons/Sun.tsx @@ -1,9 +1,16 @@ import * as React from "react"; export function Sun() { - return - - ; + return ( + + + + ); } diff --git a/src/components/Icons/Trash.tsx b/src/components/Icons/Trash.tsx index b1fb2c3..6c0039b 100644 --- a/src/components/Icons/Trash.tsx +++ b/src/components/Icons/Trash.tsx @@ -2,12 +2,19 @@ import * as React from "react"; export default function Trash() { return ( - + + - + fill-rule="evenodd" + d="M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z" + /> - ) + ); } -- cgit v1.2.3