@zohodesk/components
Version:
Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development
50 lines • 827 B
JavaScript
/* eslint-disable */
export const letterspacingMapping = {
'inherit': 'inherit',
'0.1': '0_1',
'0.2': '0_2',
'0.3': '0_3',
'0.4': '0_4',
'0.5': '0_5',
'0.6': '0_6',
'0.7': '0_7',
'0.8': '0_8',
'0.9': '0_9',
'1': '1',
'1.1': '1_1',
'1.2': '1_2',
'1.3': '1_3',
'1.4': '1_4',
'1.5': '1_5',
'1.6': '1_6',
'1.7': '1_7',
'1.8': '1_8',
'1.9': '1_9',
'2': '2'
};
export const lineheightMapping = {
'inherit': 'inherit',
'initial': 'initial',
'normal': 'normal',
'0': '0',
'0.1': '0_1',
'0.2': '0_2',
'0.3': '0_3',
'0.4': '0_4',
'0.5': '0_5',
'0.6': '0_6',
'0.7': '0_7',
'0.8': '0_8',
'0.9': '0_9',
'1': '1',
'1.1': '1_1',
'1.2': '1_2',
'1.3': '1_3',
'1.4': '1_4',
'1.5': '1_5',
'1.6': '1_6',
'1.7': '1_7',
'1.8': '1_8',
'1.9': '1_9',
'2': '2'
};