Skip to content

Commit

Permalink
fix(exports): add missing exports (#111)
Browse files Browse the repository at this point in the history
Add missing interface exports for CSSClasses and ThemeOptions from the package

Fixes #110

Signed-off-by: Niloy Sikdar <niloysikdar30@gmail.com>

Signed-off-by: Niloy Sikdar <niloysikdar30@gmail.com>
  • Loading branch information
niloysikdar committed Sep 11, 2022
1 parent 58a2a05 commit ca059c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ export * from './Typography';
export * from './Image';
export * from './Preheader';
export * from './Quote';
export type { ThemeOptions } from './DefaultTheme';
1 change: 1 addition & 0 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { sx } from './sx';
export { makeStyles } from './makeStyles';
export type { CSSClasses } from './makeStyles';
export { generateEmail } from './generateEmail';
export { generateTextEmailFromHTML } from './generateTextEmailFromHTML';
export { generateTextEmail } from './generateTextEmail';
Expand Down
1 change: 1 addition & 0 deletions src/utils/makeStyles/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export { makeStyles } from './makeStyles';
export type { CSSClasses } from './makeStyles';

0 comments on commit ca059c4

Please sign in to comment.