diff --git a/src/swap/components/SwapSettingsSlippageLayout.test.tsx b/src/swap/components/SwapSettingsSlippageLayout.test.tsx
index b1ab9b10fd..3723f45b8b 100644
--- a/src/swap/components/SwapSettingsSlippageLayout.test.tsx
+++ b/src/swap/components/SwapSettingsSlippageLayout.test.tsx
@@ -24,8 +24,11 @@ vi.mock('./SwapSettingsSlippageInput', () => ({
SwapSettingsSlippageInput: () =>
({
SwapSettingsSlippageInput: () =>
Input
,
}));
-vi.mock('../../styles/theme', () => ({
- cn: (...args: string[]) => args.join(' '),
+vi.mock('../styles/theme', () => ({
+ cn: (...args) => args.join(' '),
+ background: { default: 'bg-default' },
+ border: { default: 'border-default' },
+ pressable: { shadow: 'pressable-shadow' },
}));
describe('SwapSettingsSlippageLayoutBottomSheet', () => {
diff --git a/src/swap/components/SwapSettingsSlippageLayoutBottomSheet.tsx b/src/swap/components/SwapSettingsSlippageLayoutBottomSheet.tsx
index 03e19b3c0d..b05fe36147 100644
--- a/src/swap/components/SwapSettingsSlippageLayoutBottomSheet.tsx
+++ b/src/swap/components/SwapSettingsSlippageLayoutBottomSheet.tsx
@@ -1,6 +1,6 @@
import { Children, useMemo } from 'react';
import { findComponent } from '../../internal/utils/findComponent';
-import { cn } from '../../styles/theme';
+import { background, border, cn, color, pressable } from '../../styles/theme';
import type { SwapSettingsSlippageLayoutReact } from '../types';
import { SwapSettingsSlippageDescription } from './SwapSettingsSlippageDescription';
import { SwapSettingsSlippageInput } from './SwapSettingsSlippageInput';
@@ -24,15 +24,22 @@ export function SwapSettingsSlippageLayoutBottomSheet({
return (
-
+
-
Settings
+ Settings
@@ -41,7 +48,12 @@ export function SwapSettingsSlippageLayoutBottomSheet({
{input &&
{input}
}
);