aboutsummaryrefslogtreecommitdiffstats
path: root/stories/ng2-component-lab/tabs.component.exp.ts
blob: ff4c0c57474cdd397a5bcd6320785c0aa3d087d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { experimentOn } from '@islavi/ng2-component-lab';

export default experimentOn('Tabs').group('Tabs', [
    {
        id: 'simpleTabs',
        title: 'Simple tabs with text title',
        description: "Simple tabs with text title",
        showSource: true,
        template: `
        <sdc-tabs>
            <sdc-tab title="tab1">This is tab 1</sdc-tab>
            <sdc-tab title="tab2">This is tab 2</sdc-tab>
        </sdc-tabs>
    `
    },
    {
        id: 'simpleTabsWithIcons',
        title: 'Simple tabs with icon title',
        description: "Simple tabs with icon title",
        showSource: true,
        template: `
        <sdc-tabs>
            <sdc-tab titleIcon="inputs-o">This is tab 1</sdc-tab>
            <sdc-tab titleIcon="edit-file-o">This is tab 2</sdc-tab>
        </sdc-tabs>
    `
    }
]);