UNPKG

@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

20 lines 658 B
import { COLORS } from '../../foundations/colors'; import { FONT_WEIGHT } from '../../foundations/typography'; import { TextCountVariantType } from './variants'; export const TEXT_COUNT_STYLES = { [TextCountVariantType.DEFAULT]: { wrapper: { width: 'fit-content', height: 'auto', }, letfText: { font_weight: FONT_WEIGHT.font_weight_500, color: COLORS.NEUTRAL.color_neutral_font_150, }, rightText: { font_weight: FONT_WEIGHT.font_weight_400, color: COLORS.NEUTRAL.color_neutral_font_150, }, }, }; //# sourceMappingURL=styles.js.map