twenty/front/tsup.ui.index.tsx
bosiraphael 7aa6b20418
Adding the possibility to add multiple ui components in the live code editor in the docs (#2381)
* working

* forgot docs folder

* modify according to comments
2023-11-07 12:33:40 +01:00

14 lines
485 B
TypeScript

import { ThemeType } from './src/modules/ui/theme/constants/theme';
export {ThemeProvider} from '@emotion/react';
export {lightTheme, darkTheme} from './src/modules/ui/theme/constants/theme';
declare module '@emotion/react' {
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface Theme extends ThemeType {}
}
export * from './src/modules/ui/display/checkmark/components/Checkmark';
export * from './src/modules/ui/input/button/components/Button';