@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
22 lines • 624 B
JavaScript
import { BORDERS } from '../../foundations/borders';
import { PillSelectorVariant } from './variants';
export const PILL_SELECTOR_STYLES = {
[PillSelectorVariant.DEFAULT]: {
container: {
display: 'flex',
flex_direction: 'row',
max_width: 'fit-content',
},
pill: {
border_left: BORDERS.border_00,
border_right: BORDERS.border_00,
},
firstPill: {
border_right: BORDERS.border_00,
},
lastPill: {
border_left: BORDERS.border_00,
},
},
};
//# sourceMappingURL=styles.js.map