carbon-components
Version:
Carbon Components is a component library for IBM Cloud
53 lines (50 loc) • 645 B
JavaScript
const tags = [
{
type: 'ibm',
label: 'IBM',
},
{
type: 'beta',
label: 'Beta',
},
{
type: 'third-party',
label: 'Third-Party',
},
{
type: 'local',
label: 'Local',
},
{
type: 'dedicated',
label: 'Dedicated',
},
{
type: 'custom',
label: 'Custom',
},
{
type: 'experimental',
label: 'Experimental',
},
{
type: 'community',
label: 'Community',
},
{
type: 'private',
label: 'Private',
},
];
module.exports = {
variants: [
{
name: 'default',
label: 'Tag',
context: {
tags,
},
},
],
};
;