From 832794e035705e7f0a5989ce240a385e5ccebf62 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 28 Nov 2022 17:37:25 -0500 Subject: Reintegrate GraphQL (#23) * Use GraphQL for site metadata incl version * Explicit props for passthrough components --- src/styles/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/styles/index.ts') diff --git a/src/styles/index.ts b/src/styles/index.ts index 8eee62a..978271a 100644 --- a/src/styles/index.ts +++ b/src/styles/index.ts @@ -4,4 +4,6 @@ import BlockHeader from "./BlockHeader"; import Content from "./Content"; import Footer from "./Footer"; -export { BlockAnchor, BlockBody, BlockHeader, Content, Footer }; +type Theme = Record; + +export { BlockAnchor, BlockBody, BlockHeader, Content, Footer, Theme }; -- cgit