@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.
20 lines (19 loc) • 609 B
TypeScript
export declare enum TextFontWeightTypesEnum {
normal = "normal",
bold = "bold",
oneHundred = "100",
twoHundred = "200",
threeHundred = "300",
fourHundred = "400",
fiveHundred = "500",
sixHundred = "600",
sevenHundred = "700",
eightHundred = "800",
nineHundred = "900",
light = "light",
lighter = "lighter",
bolder = "bolder",
inherit = "inherit"
}
export declare const textFontWeightTypes: (TextFontWeightTypesEnum | undefined)[];
export type TextFontWeightType = typeof textFontWeightTypes | `${TextFontWeightTypesEnum}` | TextFontWeightTypesEnum;