mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-19 01:21:30 +03:00
7aa6b20418
* working * forgot docs folder * modify according to comments
14 lines
485 B
TypeScript
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';
|