mirror of
https://github.com/mudita/mudita-center.git
synced 2025-12-23 22:28:03 -05:00
14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
/**
|
|
* Copyright (c) Mudita sp. z o.o. All rights reserved.
|
|
* For licensing, see https://github.com/mudita/mudita-center/blob/master/LICENSE.md
|
|
*/
|
|
|
|
import "styled-components"
|
|
import { Theme } from "../theme/src"
|
|
|
|
type CustomTheme = Theme
|
|
|
|
declare module "styled-components" {
|
|
export interface DefaultTheme extends CustomTheme {}
|
|
}
|