baseui
Version:
A React Component library implementing the Base design language
30 lines (28 loc) • 642 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SIZE = exports.SHAPE = exports.KIND = void 0;
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
const KIND = exports.KIND = {
primary: 'primary',
secondary: 'secondary',
tertiary: 'tertiary'
};
const SHAPE = exports.SHAPE = {
default: 'default',
pill: 'pill',
round: 'round',
circle: 'circle',
square: 'square'
};
const SIZE = exports.SIZE = {
mini: 'mini',
default: 'default',
compact: 'compact',
large: 'large'
};