platform-codebase/@packages/@ui/ui-payment/src/styled.d.ts
Quinn Ftw 77879f73e7 fix(imports): update theme-provider to ui-theme in source files
Update all source file imports from @lilith/theme-provider to
@lilith/ui-theme to match package rename.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 15:43:16 -08:00

13 lines
378 B
TypeScript

/**
* Styled Components Type Augmentation
*
* Extends styled-components DefaultTheme with our ThemeInterface.
* This allows TypeScript to recognize theme properties in styled components.
*/
import 'styled-components';
import type { ThemeInterface } from '@lilith/ui-theme';
declare module 'styled-components' {
export interface DefaultTheme extends ThemeInterface {}
}