wip: add basic option header

This commit is contained in:
Erik Sundell
2019-01-07 11:26:02 +01:00
parent ad4f39101a
commit d75860a72c
3 changed files with 18 additions and 0 deletions
@@ -0,0 +1,12 @@
import React from 'react';
import { components } from 'react-select';
export const GroupHeading = props => {
return (
<label className="description-picker-option__button btn picker-option-group">
<components.GroupHeading {...props} />
</label>
);
};
export default GroupHeading;
+1
View File
@@ -105,6 +105,7 @@
@import 'components/page_loader';
@import 'components/thresholds';
@import 'components/toggle_button_group';
@import 'components/group-heading';
@import 'components/value-mappings';
@import 'components/popover-box';
@@ -0,0 +1,5 @@
.picker-option-group {
cursor: default;
font-weight: $lead-font-weight;
color: $btn-primary-bg-hl;
}