2023-11-07 14:33:40 +03:00
|
|
|
import { ThemeType } from './src/modules/ui/theme/constants/theme';
|
2023-11-04 01:09:20 +03:00
|
|
|
|
2023-11-07 14:33:40 +03:00
|
|
|
export {ThemeProvider} from '@emotion/react';
|
2023-11-04 01:09:20 +03:00
|
|
|
|
2023-11-07 14:33:40 +03:00
|
|
|
export {lightTheme, darkTheme} from './src/modules/ui/theme/constants/theme';
|
2023-11-04 01:09:20 +03:00
|
|
|
|
|
|
|
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';
|
2023-11-07 14:33:40 +03:00
|
|
|
export * from './src/modules/ui/input/button/components/Button';
|