chore(deps): update dependency styled-components to v6.1.17 #458

Merged
tom merged 2 commits from renovate/styled-components-6.x-lockfile into master 2025-04-09 13:43:11 +02:00
Showing only changes of commit 18d4cdce0c - Show all commits

9
src/types/styled-components.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
import "styled-components"
import { IThemeProps } from "../lib/useTheme"
// As of styled-components v6.1.17, we need to map our custom theme interface to the
// default styled-components theme, as the type definition has been tightened with the merge request.
// https://github.com/styled-components/styled-components/pull/4317
declare module "styled-components" {
export interface DefaultTheme extends IThemeProps {}
}