Skip to content

Commit abee25d

Browse files
committed
fixed type error
1 parent 7465030 commit abee25d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/hsx-styles/mod.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
*/
2727

2828
/** Default path for serving HSX styles */
29-
export const HSX_STYLES_PATH = "/static/hsx.css";
29+
export const HSX_STYLES_PATH: string = "/static/hsx.css";
3030

3131
/** Default theme (light, indigo accent) */
32-
export const hsxStyles = `/* HSX Default Styles - Light Theme */
32+
export const hsxStyles: string = `/* HSX Default Styles - Light Theme */
3333
@layer reset, tokens, base, layout, components, utilities, animations;
3434
3535
@layer reset {
@@ -721,7 +721,7 @@ export const hsxStyles = `/* HSX Default Styles - Light Theme */
721721
`;
722722

723723
/** Dark theme variant (for hsx-page example) */
724-
export const hsxStylesDark = `/* HSX Dark Theme */
724+
export const hsxStylesDark: string = `/* HSX Dark Theme */
725725
@layer reset, tokens, base, layout, components;
726726
727727
@layer reset {

0 commit comments

Comments
 (0)