From 6b79c3a6c00bf0ae52e49c63b485bb56d8c1e25a Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 9 Jan 2025 19:23:56 +0530 Subject: [PATCH] chore: lint --- src/components/atoms/buttons/buttons.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/atoms/buttons/buttons.tsx b/src/components/atoms/buttons/buttons.tsx index 0dd72e0c..50b630f5 100644 --- a/src/components/atoms/buttons/buttons.tsx +++ b/src/components/atoms/buttons/buttons.tsx @@ -1,8 +1,6 @@ import styled from 'styled-components'; import { useThemeMode } from '../../../context/theme-provider'; - - export const NavBarButton = styled.button<{ disabled: boolean, mode: 'light' | 'dark' }>` margin-left: 10px; margin-right: 5px; @@ -15,9 +13,6 @@ export const NavBarButton = styled.button<{ disabled: boolean, mode: 'light' | ' border-radius: 12px; outline: none; color: ${mode => mode ? '#ffffff' : '#333333'}; - - - `; export const UrlFormButton = styled.button`