UNPKG

@denali-design/react

Version:

React.JS component library for the Denali CSS Framework

23 lines 694 B
/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ export declare enum DnFontFamily { default = "default", mono = "mono" } export declare enum DnFontWeight { default = "default", light = "light", bold = "bold", italic = "italic" } export declare const getFontWeightClassName: ({ fontWeight }: DnFontWeightProps) => string; export declare const getFontFamilyClassName: ({ fontFamily }: DnFontFamilyProps) => string; export interface DnFontFamilyProps { fontFamily: DnFontFamily; } export interface DnFontWeightProps { fontWeight: DnFontWeight; } //# sourceMappingURL=index.d.ts.map