chore: lint

This commit is contained in:
amhsirak
2025-01-09 19:23:56 +05:30
parent c814e37aa7
commit 6b79c3a6c0

View File

@@ -1,8 +1,6 @@
import styled from 'styled-components'; import styled from 'styled-components';
import { useThemeMode } from '../../../context/theme-provider'; import { useThemeMode } from '../../../context/theme-provider';
export const NavBarButton = styled.button<{ disabled: boolean, mode: 'light' | 'dark' }>` export const NavBarButton = styled.button<{ disabled: boolean, mode: 'light' | 'dark' }>`
margin-left: 10px; margin-left: 10px;
margin-right: 5px; margin-right: 5px;
@@ -15,9 +13,6 @@ export const NavBarButton = styled.button<{ disabled: boolean, mode: 'light' | '
border-radius: 12px; border-radius: 12px;
outline: none; outline: none;
color: ${mode => mode ? '#ffffff' : '#333333'}; color: ${mode => mode ? '#ffffff' : '#333333'};
`; `;
export const UrlFormButton = styled.button` export const UrlFormButton = styled.button`