UNPKG

@zendeskgarden/react-typography

Version:

Components relating to typography in the Garden Design System

15 lines (13 loc) 713 B
/** * Copyright Zendesk, Inc. * * Use of this source code is governed under the Apache License, Version 2.0 * found at http://www.apache.org/licenses/LICENSE-2.0. */ const HUE = ['grey', 'red', 'green', 'yellow']; const SIZE = ['small', 'medium', 'large']; const INHERIT_SIZE = ['inherit', ...SIZE]; const TYPE_ORDERED_LIST = ['decimal', 'decimal-leading-zero', 'lower-alpha', 'lower-roman', 'upper-alpha', 'upper-roman']; const TYPE_UNORDERED_LIST = ['circle', 'disc', 'square']; const LANGUAGES = ['bash', 'css', 'diff', 'graphql', 'javascript', 'json', 'jsx', 'markdown', 'markup', 'python', 'typescript', 'tsx', 'yaml']; export { HUE, INHERIT_SIZE, LANGUAGES, SIZE, TYPE_ORDERED_LIST, TYPE_UNORDERED_LIST };