carbon-components
Version:
Carbon Components is a component library for IBM Cloud
26 lines (24 loc) • 499 B
JavaScript
module.exports = {
variants: [
{
name: 'default',
label: 'Slider',
notes: `
A slider enables the user to specify a numeric value which must be no less than a given value,
and no more than another given value.
`,
context: {
inputId: 'slider-input-box',
},
},
{
name: 'light',
label: 'Light',
context: {
light: true,
inputId: 'slider-input-box-light',
},
},
],
};
;