From 338550b2854f42db1cdcafaaef9955a31493176f Mon Sep 17 00:00:00 2001 From: Younes Chellaf Date: Wed, 20 Nov 2024 16:34:22 +0100 Subject: [PATCH] Change lib export to explicit export --- app/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib.ts b/app/lib.ts index ad75b30..25ee8c0 100644 --- a/app/lib.ts +++ b/app/lib.ts @@ -9,7 +9,7 @@ import '../src/styling/main.scss'; */ // Typography -export * from '../src/typography/Heading/Heading.tsx'; +export { H1, H2, H3, H4, H5, H6 } from '../src/typography/Heading/Heading.tsx'; // Actions export { Button } from '../src/components/actions/Button/Button.tsx';