UNPKG

688 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.SIZE = exports.SHAPE = exports.KIND = void 0;
7
8/*
9Copyright (c) 2018-2020 Uber Technologies, Inc.
10
11This source code is licensed under the MIT license found in the
12LICENSE file in the root directory of this source tree.
13*/
14var KIND = {
15 primary: 'primary',
16 secondary: 'secondary',
17 tertiary: 'tertiary',
18 minimal: 'minimal'
19};
20exports.KIND = KIND;
21var SHAPE = {
22 default: 'default',
23 pill: 'pill',
24 round: 'round',
25 circle: 'circle',
26 square: 'square'
27};
28exports.SHAPE = SHAPE;
29var SIZE = {
30 mini: 'mini',
31 default: 'default',
32 compact: 'compact',
33 large: 'large'
34};
35exports.SIZE = SIZE;
\No newline at end of file