From 612e84ee2afe30a0c974d191e2c9f71fbd03674b Mon Sep 17 00:00:00 2001 From: Pavel Prichodko <14926950+prichodko@users.noreply.github.com> Date: Tue, 19 Apr 2022 14:09:56 +0200 Subject: [PATCH] fix(react): re-export of stitches types --- packages/status-react/src/styles/config.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/status-react/src/styles/config.tsx b/packages/status-react/src/styles/config.tsx index baa30650..02065d4c 100644 --- a/packages/status-react/src/styles/config.tsx +++ b/packages/status-react/src/styles/config.tsx @@ -1,10 +1,6 @@ import { createStitches } from '@stitches/react' -import type { CSS as StitchesCSS } from '@stitches/react' - -export type { VariantProps } from '@stitches/react' -export type CSS = StitchesCSS -export type Theme = typeof theme +import type { CSS as StitchesCSS, VariantProps } from '@stitches/react' export const { styled, @@ -164,3 +160,7 @@ export const darkTheme = createTheme({ kaki: 'rgba(234, 210, 123, 1)', }, }) + +export type { VariantProps } +export type CSS = StitchesCSS +export type Theme = typeof theme