trepur_components 0.2.0 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Atoms/AlertBar/AlertBar.stories.js +64 -79
- package/dist/components/Atoms/Breadcrumbs/Breadcrumbs.stories.js +37 -45
- package/dist/components/Atoms/BreadcrumbsItem/BreadcrumbsItem.stories.js +81 -98
- package/dist/components/Atoms/Button/button.stories.js +56 -74
- package/dist/components/Atoms/Collapsible/Collapsible.stories.js +141 -154
- package/dist/components/Atoms/Column/Column.stories.js +24 -42
- package/dist/components/Atoms/Icon/Icon.stories.js +20 -38
- package/dist/components/Atoms/Image/Image.stories.js +21 -40
- package/dist/components/Atoms/InformationIcon/InformationIcon.stories.js +90 -103
- package/dist/components/Atoms/Input/Input.stories.js +42 -55
- package/dist/components/Atoms/NavItem/NavItem.stories.js +93 -108
- package/dist/components/Atoms/Row/Row.stories.js +18 -33
- package/dist/components/Atoms/StarRating/StarRating.stories.js +22 -41
- package/dist/components/Atoms/TextAndTitle/TextAndTitle.stories.js +49 -62
- package/dist/components/Atoms/Tubestops/Tubestops.stories.js +43 -51
- package/dist/components/Atoms/Video/Video.stories.js +29 -50
- package/dist/components/Organisms/Accordion/Accordion.stories.js +93 -97
- package/dist/components/Organisms/BreadcrumbsBordered/BreadcrumbsBordered.stories.js +92 -95
- package/dist/components/Organisms/Card/Card.stories.js +128 -135
- package/dist/components/Organisms/CardWithTopImage/CardWithTopImage.stories.js +48 -57
- package/dist/components/Organisms/Carousel/Carousel.stories.js +104 -123
- package/dist/components/Organisms/Chevron Card/ChevronCard.stories.js +17 -27
- package/dist/components/Organisms/Form/Form.stories.js +112 -118
- package/dist/components/Organisms/FyreCard/FyreCard.stories.js +106 -115
- package/dist/components/Organisms/ImageLink/ImageLink.stories.js +49 -72
- package/dist/components/Organisms/ImageLinkList/ImageLinkList.stories.js +30 -43
- package/dist/components/Organisms/Jumbotron/Jumbotron.stories.js +37 -50
- package/dist/components/Organisms/Nav/Nav.stories.js +97 -107
- package/dist/components/Organisms/NewsCard/NewsCard.stories.js +52 -65
- package/dist/components/Organisms/Profile/Profile.stories.js +77 -86
- package/dist/components/Organisms/Search/Search.stories.js +41 -54
- package/dist/components/Organisms/Testimonial/Testimonial.stories.js +98 -111
- package/dist/components/Organisms/Timeline/Timeline.stories.js +66 -70
- package/dist/components/Organisms/UserIcon/UserIcon.stories.js +37 -51
- package/dist/index.css +4 -0
- package/package.json +6 -2
- package/dist/components/Atoms/Button/button.stories.mdx +0 -72
|
@@ -1,60 +1,47 @@
|
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Input from './index'
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Trepur Components/Atoms/Input',
|
|
6
|
+
component: Input,
|
|
7
|
+
parameters: {},
|
|
8
|
+
argTypes: {
|
|
9
|
+
label: {
|
|
10
|
+
description: '',
|
|
11
|
+
control: 'text',
|
|
12
|
+
table: {
|
|
13
|
+
category: '',
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
placeholder: {
|
|
17
|
+
description: '',
|
|
18
|
+
control: 'text',
|
|
19
|
+
table: {
|
|
20
|
+
category: '',
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
inputType: {
|
|
24
|
+
description: '',
|
|
25
|
+
control: 'text',
|
|
26
|
+
table: {
|
|
27
|
+
category: '',
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
bold: {
|
|
31
|
+
description: '',
|
|
32
|
+
control: 'boolean',
|
|
33
|
+
table: {
|
|
34
|
+
category: '',
|
|
35
|
+
}
|
|
36
|
+
}
|
|
32
37
|
},
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
table: {
|
|
37
|
-
category: ''
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
bold: {
|
|
41
|
-
description: '',
|
|
42
|
-
control: 'boolean',
|
|
43
|
-
table: {
|
|
44
|
-
category: ''
|
|
45
|
-
}
|
|
38
|
+
args: {
|
|
39
|
+
label: 'This is a label',
|
|
40
|
+
placeholder: 'This is a placeholder'
|
|
46
41
|
}
|
|
47
|
-
|
|
48
|
-
args: {
|
|
49
|
-
label: 'This is a label',
|
|
50
|
-
placeholder: 'This is a placeholder'
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
|
-
exports.default = _default;
|
|
54
|
-
|
|
55
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_index.default, args);
|
|
42
|
+
}
|
|
56
43
|
|
|
57
|
-
const
|
|
44
|
+
const Template = (args) => <Input {...args} />;
|
|
58
45
|
|
|
59
|
-
|
|
46
|
+
export const _Input = Template.bind({});
|
|
60
47
|
_Input.args = {};
|
|
@@ -1,115 +1,100 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Column from '../Column';
|
|
3
|
+
import NavItem from './index'
|
|
2
4
|
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
description: '',
|
|
87
|
-
control: 'boolean',
|
|
88
|
-
table: {
|
|
89
|
-
category: ''
|
|
90
|
-
}
|
|
5
|
+
export default {
|
|
6
|
+
title: 'Trepur Components/Atoms/Nav Item',
|
|
7
|
+
component: NavItem,
|
|
8
|
+
parameters: {},
|
|
9
|
+
argTypes: {
|
|
10
|
+
name: {
|
|
11
|
+
description: '',
|
|
12
|
+
control: 'text',
|
|
13
|
+
table: {
|
|
14
|
+
category: 'Standard',
|
|
15
|
+
subcategory: 'Content',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
url: {
|
|
19
|
+
description: '',
|
|
20
|
+
control: 'text',
|
|
21
|
+
table: {
|
|
22
|
+
category: 'Standard',
|
|
23
|
+
subcategory: 'Content',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
bgColor: {
|
|
27
|
+
description: '',
|
|
28
|
+
control: 'color',
|
|
29
|
+
table: {
|
|
30
|
+
category: 'Standard',
|
|
31
|
+
subcategory: 'Colors',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
textColor: {
|
|
35
|
+
description: '',
|
|
36
|
+
control: 'color',
|
|
37
|
+
table: {
|
|
38
|
+
category: 'Standard',
|
|
39
|
+
subcategory: 'Colors',
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
borderColor: {
|
|
43
|
+
description: '',
|
|
44
|
+
control: 'color',
|
|
45
|
+
table: {
|
|
46
|
+
category: 'Standard',
|
|
47
|
+
subcategory: 'Colors',
|
|
48
|
+
},
|
|
49
|
+
},
|
|
50
|
+
hoverBgColor: {
|
|
51
|
+
description: '',
|
|
52
|
+
control: 'color',
|
|
53
|
+
table: {
|
|
54
|
+
category: 'Hover',
|
|
55
|
+
subcategory: 'Colors',
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
hoverTextColor: {
|
|
59
|
+
description: '',
|
|
60
|
+
control: 'color',
|
|
61
|
+
table: {
|
|
62
|
+
category: 'Hover',
|
|
63
|
+
subcategory: 'Colors',
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
hoverBorderColor: {
|
|
67
|
+
description: '',
|
|
68
|
+
control: 'color',
|
|
69
|
+
table: {
|
|
70
|
+
category: 'Hover',
|
|
71
|
+
subcategory: 'Colors',
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
rounded: {
|
|
75
|
+
description: '',
|
|
76
|
+
control: 'boolean',
|
|
77
|
+
table: {
|
|
78
|
+
category: '',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
bordered: {
|
|
82
|
+
description: '',
|
|
83
|
+
control: 'boolean',
|
|
84
|
+
table: {
|
|
85
|
+
category: '',
|
|
86
|
+
},
|
|
87
|
+
}
|
|
91
88
|
},
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
category: ''
|
|
97
|
-
}
|
|
89
|
+
args: {
|
|
90
|
+
name: 'Home',
|
|
91
|
+
bordered: true,
|
|
92
|
+
rounded: true
|
|
98
93
|
}
|
|
99
|
-
|
|
100
|
-
args: {
|
|
101
|
-
name: 'Home',
|
|
102
|
-
bordered: true,
|
|
103
|
-
rounded: true
|
|
104
|
-
}
|
|
105
|
-
};
|
|
106
|
-
exports.default = _default;
|
|
94
|
+
}
|
|
107
95
|
|
|
108
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_Column.default, {
|
|
109
|
-
sm: 1
|
|
110
|
-
}, /*#__PURE__*/_react.default.createElement(_index.default, args));
|
|
111
96
|
|
|
112
|
-
const
|
|
97
|
+
const Template = (args) => <Column sm={1}><NavItem {...args} /></Column>
|
|
113
98
|
|
|
114
|
-
|
|
99
|
+
export const _NavItem = Template.bind({});
|
|
115
100
|
_NavItem.args = {};
|
|
@@ -1,33 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
args: {
|
|
20
|
-
bordered: true,
|
|
21
|
-
children: /*#__PURE__*/_react.default.createElement("div", {
|
|
22
|
-
className: "h-16"
|
|
23
|
-
})
|
|
24
|
-
}
|
|
25
|
-
};
|
|
26
|
-
exports.default = _default;
|
|
27
|
-
|
|
28
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_index.default, args);
|
|
29
|
-
|
|
30
|
-
const _Row = Template.bind({});
|
|
31
|
-
|
|
32
|
-
exports._Row = _Row;
|
|
33
|
-
_Row.args = {};
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Row from './index'
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Trepur Components/Atoms/Row',
|
|
6
|
+
component: Row,
|
|
7
|
+
parameters: {},
|
|
8
|
+
argTypes: {},
|
|
9
|
+
args: {
|
|
10
|
+
bordered: true,
|
|
11
|
+
children: <div className='h-16'></div>
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const Template = (args) => <Row {...args} />;
|
|
16
|
+
|
|
17
|
+
export const _Row = Template.bind({});
|
|
18
|
+
_Row.args = {};
|
|
@@ -1,41 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
var _default = {
|
|
25
|
-
title: 'Trepur Components/Atoms/Star Rating',
|
|
26
|
-
components: _index.default,
|
|
27
|
-
parameters: {},
|
|
28
|
-
argTypes: _objectSpread({}, _controls.starOptions),
|
|
29
|
-
args: {
|
|
30
|
-
size: 1,
|
|
31
|
-
stars: 3
|
|
32
|
-
}
|
|
33
|
-
};
|
|
34
|
-
exports.default = _default;
|
|
35
|
-
|
|
36
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_index.default, args);
|
|
37
|
-
|
|
38
|
-
const _StarRating = Template.bind({});
|
|
39
|
-
|
|
40
|
-
exports._StarRating = _StarRating;
|
|
41
|
-
_StarRating.args = {};
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import StarRating from './index'
|
|
3
|
+
import './index.css'
|
|
4
|
+
import { starOptions } from '../../../utils/controls'
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
title: 'Trepur Components/Atoms/Star Rating',
|
|
8
|
+
components: StarRating,
|
|
9
|
+
parameters: {},
|
|
10
|
+
argTypes: {
|
|
11
|
+
...starOptions
|
|
12
|
+
},
|
|
13
|
+
args: {
|
|
14
|
+
size: 1,
|
|
15
|
+
stars: 3
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const Template = (args) => <StarRating {...args} />;
|
|
20
|
+
|
|
21
|
+
export const _StarRating = Template.bind({});
|
|
22
|
+
_StarRating.args = {};
|
|
@@ -1,66 +1,53 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import TextAndTitle from './index'
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Trepur Components/Atoms/Text and Title',
|
|
6
|
+
components: TextAndTitle,
|
|
7
|
+
argTypes: {
|
|
8
|
+
title: {
|
|
9
|
+
description: '',
|
|
10
|
+
control: 'text',
|
|
11
|
+
table: {
|
|
12
|
+
category: ''
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
text: {
|
|
16
|
+
description: '',
|
|
17
|
+
control: 'text',
|
|
18
|
+
table: {
|
|
19
|
+
category: ''
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
textColor: {
|
|
23
|
+
description: '',
|
|
24
|
+
control: 'color',
|
|
25
|
+
table: {
|
|
26
|
+
category: 'Colors'
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
titleColor: {
|
|
30
|
+
description: '',
|
|
31
|
+
control: 'color',
|
|
32
|
+
table: {
|
|
33
|
+
category: 'Colors'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
bgColor: {
|
|
37
|
+
description: '',
|
|
38
|
+
control: 'color',
|
|
39
|
+
table: {
|
|
40
|
+
category: 'Colors'
|
|
41
|
+
}
|
|
42
|
+
}
|
|
24
43
|
},
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
table: {
|
|
29
|
-
category: ''
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
textColor: {
|
|
33
|
-
description: '',
|
|
34
|
-
control: 'color',
|
|
35
|
-
table: {
|
|
36
|
-
category: 'Colors'
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
titleColor: {
|
|
40
|
-
description: '',
|
|
41
|
-
control: 'color',
|
|
42
|
-
table: {
|
|
43
|
-
category: 'Colors'
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
bgColor: {
|
|
47
|
-
description: '',
|
|
48
|
-
control: 'color',
|
|
49
|
-
table: {
|
|
50
|
-
category: 'Colors'
|
|
51
|
-
}
|
|
44
|
+
args: {
|
|
45
|
+
title: 'This is a title',
|
|
46
|
+
text: 'This is some text'
|
|
52
47
|
}
|
|
53
|
-
|
|
54
|
-
args: {
|
|
55
|
-
title: 'This is a title',
|
|
56
|
-
text: 'This is some text'
|
|
57
|
-
}
|
|
58
|
-
};
|
|
59
|
-
exports.default = _default;
|
|
60
|
-
|
|
61
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_index.default, args);
|
|
48
|
+
}
|
|
62
49
|
|
|
63
|
-
const
|
|
50
|
+
const Template = (args) => <TextAndTitle {...args} />;
|
|
64
51
|
|
|
65
|
-
|
|
66
|
-
_TextAndTitle.args = {};
|
|
52
|
+
export const _TextAndTitle = Template.bind({});
|
|
53
|
+
_TextAndTitle.args = {};
|
|
@@ -1,57 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
category: ''
|
|
24
|
-
}
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import Tubestops from './index'
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Trepur Components/Atoms/Tube Stops',
|
|
6
|
+
component: Tubestops,
|
|
7
|
+
parameters: {},
|
|
8
|
+
argTypes: {
|
|
9
|
+
isHorizontal: {
|
|
10
|
+
description: '',
|
|
11
|
+
control: 'boolean',
|
|
12
|
+
table: {
|
|
13
|
+
category: '',
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
items: {
|
|
17
|
+
description: '',
|
|
18
|
+
control: 'array',
|
|
19
|
+
table: {
|
|
20
|
+
category: '',
|
|
21
|
+
},
|
|
22
|
+
}
|
|
25
23
|
},
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
args: {
|
|
25
|
+
isHorizontal: false,
|
|
26
|
+
reverse: false,
|
|
27
|
+
items: [
|
|
28
|
+
{
|
|
29
|
+
title: 'This is a title',
|
|
30
|
+
subtitle: 'This is a subtitle'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
title: 'This is a title',
|
|
34
|
+
subtitle: 'This is a subtitle'
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
title: 'This is a title',
|
|
38
|
+
subtitle: 'This is a subtitle'
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
textCenter: true
|
|
32
42
|
}
|
|
33
|
-
|
|
34
|
-
args: {
|
|
35
|
-
isHorizontal: false,
|
|
36
|
-
reverse: false,
|
|
37
|
-
items: [{
|
|
38
|
-
title: 'This is a title',
|
|
39
|
-
subtitle: 'This is a subtitle'
|
|
40
|
-
}, {
|
|
41
|
-
title: 'This is a title',
|
|
42
|
-
subtitle: 'This is a subtitle'
|
|
43
|
-
}, {
|
|
44
|
-
title: 'This is a title',
|
|
45
|
-
subtitle: 'This is a subtitle'
|
|
46
|
-
}],
|
|
47
|
-
textCenter: true
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
exports.default = _default;
|
|
43
|
+
}
|
|
51
44
|
|
|
52
|
-
const Template = args => /*#__PURE__*/_react.default.createElement(_index.default, args);
|
|
53
45
|
|
|
54
|
-
const
|
|
46
|
+
const Template = (args) => <Tubestops {...args} />;
|
|
55
47
|
|
|
56
|
-
|
|
48
|
+
export const _Tubestops = Template.bind({});
|
|
57
49
|
_Tubestops.args = {};
|