From 319c3e7de89135aa43341320d0695f101bc52c72 Mon Sep 17 00:00:00 2001 From: kaniwow Date: Thu, 3 Nov 2022 11:53:49 +0800 Subject: feat: correct quotation marks --- src/components/shared/Fab.tsx | 14 ++--- src/components/shared/TextFitler.tsx | 2 +- src/components/shared/ThemeSwitcher.tsx | 94 ++++++++++++++++----------------- 3 files changed, 55 insertions(+), 55 deletions(-) (limited to 'src/components/shared') diff --git a/src/components/shared/Fab.tsx b/src/components/shared/Fab.tsx index 832306e..d3a62e1 100644 --- a/src/components/shared/Fab.tsx +++ b/src/components/shared/Fab.tsx @@ -23,7 +23,7 @@ interface ABProps extends React.HTMLAttributes { } const AB: React.FC = ({ children, ...p }) => ( - ); @@ -34,7 +34,7 @@ interface MBProps } export const MB: React.FC = ({ children, ...p }) => ( - ); @@ -124,17 +124,17 @@ const Fab: React.FC = ({ onMouseEnter={enter} onMouseLeave={leave} className={`rtf ${isOpen ? 'open' : 'closed'}`} - data-testid="fab" + data-testid='fab' style={style} {...p} > -
  • +
  • {icon} diff --git a/src/components/shared/TextFitler.tsx b/src/components/shared/TextFitler.tsx index e4a4a88..f790340 100644 --- a/src/components/shared/TextFitler.tsx +++ b/src/components/shared/TextFitler.tsx @@ -12,7 +12,7 @@ export function TextFilter(props: { return ( {themeIcon} @@ -49,18 +49,18 @@ function MoonA() { const motion = module.motion; return ( - + - - - - - - - - + + + + + + + + ); @@ -106,29 +106,29 @@ function Auto() { return ( - - + + - + ); } -- cgit v1.3.1