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.

9 lines (8 loc) 278 B
export declare enum FontTypeEnum { Font1 = "Font1", Font2 = "Font2", Font3 = "Font3", CondensedFont = "CondensedFont" } export type FontName = 'Font1' | 'Font2' | 'Font3' | 'CondensedFont'; export type FontProperty = FontName | FontTypeEnum | `${FontTypeEnum}`;