From da7ca819bdbf4a2061988ee155e460941ad06ee9 Mon Sep 17 00:00:00 2001 From: Eric Rabinowitz Date: Wed, 11 Sep 2024 18:00:11 -0400 Subject: [PATCH] add ThemePartyConfig to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e15b82..ad42dcb 100644 --- a/README.md +++ b/README.md @@ -163,9 +163,9 @@ function Page() { Sometimes, you might want to override a single theme value, while inheriting the rest of the current theme. ```tsx -import { ThemeOverride } from 'theme-party'; +import { ThemeOverride, ThemePartyConfig } from 'theme-party'; -const override = { color: { link: 'blue' } }; +const override: ThemePartyConfig = { color: { link: 'blue' } }; function Component() { return (