@gitlab/ui
Version:
GitLab UI Components
38 lines (35 loc) • 1.02 kB
JavaScript
import BadgeBasicExample from './badge.basic.example';
import BadgeVariantsExample from './badge.variants.example';
import BadgeScalingExample from './badge.scaling.example';
import BadgeActionableExample from './badge.action.example';
import BadgeButtonExample from './badge.button.example';
var index = [{
name: 'Basic',
items: [{
id: 'badge-basic',
name: 'Basic',
description: 'Basic Badge',
component: BadgeBasicExample
}, {
id: 'badge-variants',
name: 'Variants',
description: 'Different Badge Variants',
component: BadgeVariantsExample
}, {
id: 'badge-scaling',
name: 'Scaling',
description: 'Automatic Scaling of Badges',
component: BadgeScalingExample
}, {
id: 'badge-actions',
name: 'Actionable',
description: 'Badges with Actions',
component: BadgeActionableExample
}, {
id: 'badge-button',
name: 'Inside Button',
description: 'Show Badge inside Button',
component: BadgeButtonExample
}]
}];
export default index;