UNPKG

@devlander/styled-components-theme

Version:

Devlander's team utilizes this package during the development of their React Native projects. Its primary purpose is to facilitate code reuse by sharing types across multiple projects that uses the styled-components library.

7 lines (6 loc) 294 B
import { LayoutStyleProperties } from "./style-attributes.interfaces"; export type ContainerStyleFromTheme = LayoutStyleProperties<number> | undefined; export interface ContainerStyleProps<S = Record<any, any>> { containerStyleFromTheme?: ContainerStyleFromTheme; containerStyle?: S; }