@platformatic/ui-components 0.1.46 → 0.1.47
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/index.js +4 -0
- package/package.json +1 -1
- package/src/components/InfoBox.jsx +3 -13
- package/src/components/InfoBox.module.css +1 -1
- package/src/components/Modal.module.css +3 -0
- package/src/components/PlatformaticIcon.jsx +57 -0
- package/src/components/PlatformaticIcon.module.css +3 -0
- package/src/components/Sidebar.jsx +16 -16
- package/src/components/Sidebar.module.css +2 -2
- package/src/components/forms/Preview.jsx +10 -17
- package/src/components/forms/Preview.module.css +1 -1
- package/src/components/icons/CircleAddIcon.jsx +40 -0
- package/src/components/icons/CircleBackIcon.jsx +51 -0
- package/src/components/icons/UpgradeIcon.jsx +9 -9
- package/src/components/icons/index.js +4 -0
- package/src/stories/PlatformaticIcon.stories.jsx +14 -0
package/index.js
CHANGED
|
@@ -13,6 +13,7 @@ import GHLoginButton from './src/components/GHLoginButton'
|
|
|
13
13
|
import HorizontalSeparator from './src/components/HorizontalSeparator'
|
|
14
14
|
import Forms from './src/components/forms'
|
|
15
15
|
import Icons from './src/components/icons'
|
|
16
|
+
import InfoBox from './src/components/InfoBox'
|
|
16
17
|
import Sidebar from './src/components/Sidebar'
|
|
17
18
|
import Layout from './src/components/layouts/Layout'
|
|
18
19
|
import List from './src/components/List'
|
|
@@ -22,6 +23,7 @@ import Loader from './src/components/Loader'
|
|
|
22
23
|
import LoginButton from './src/components/LoginButton'
|
|
23
24
|
import Logo from './src/components/Logo'
|
|
24
25
|
import Modal from './src/components/Modal'
|
|
26
|
+
import PlatformaticIcon from './src/components/PlatformaticIcon'
|
|
25
27
|
import Playground from './src/components/Playground'
|
|
26
28
|
import SearchBar from './src/components/SearchBar'
|
|
27
29
|
import SimpleMetric from './src/components/SimpleMetric'
|
|
@@ -46,6 +48,7 @@ export {
|
|
|
46
48
|
GHLoginButton,
|
|
47
49
|
Forms,
|
|
48
50
|
Icons,
|
|
51
|
+
InfoBox,
|
|
49
52
|
Sidebar,
|
|
50
53
|
Layout,
|
|
51
54
|
List,
|
|
@@ -55,6 +58,7 @@ export {
|
|
|
55
58
|
LoginButton,
|
|
56
59
|
Logo,
|
|
57
60
|
Modal,
|
|
61
|
+
PlatformaticIcon,
|
|
58
62
|
Playground,
|
|
59
63
|
SearchBar,
|
|
60
64
|
SimpleMetric,
|
package/package.json
CHANGED
|
@@ -3,25 +3,15 @@ import React from 'react'
|
|
|
3
3
|
import PropTypes from 'prop-types'
|
|
4
4
|
import styles from './InfoBox.module.css'
|
|
5
5
|
import Button from './Button'
|
|
6
|
-
import
|
|
7
|
-
|
|
8
|
-
function renderItemIcon (iconName, color) {
|
|
9
|
-
if (iconName) {
|
|
10
|
-
return React.createElement(Icons[`${iconName}`], {
|
|
11
|
-
size: 'extra-large',
|
|
12
|
-
color
|
|
13
|
-
})
|
|
14
|
-
}
|
|
15
|
-
return (<></>)
|
|
16
|
-
}
|
|
6
|
+
import PlatformaticIcon from './PlatformaticIcon'
|
|
17
7
|
|
|
18
8
|
function InfoBox ({ children, iconLogo, helpText, buttonProps }) {
|
|
19
9
|
return (
|
|
20
10
|
<div className={styles.container}>
|
|
21
|
-
{
|
|
11
|
+
<PlatformaticIcon size='extra-large' iconName={iconLogo} />
|
|
22
12
|
{children}
|
|
23
13
|
<p className={styles.helpText}>{helpText}</p>
|
|
24
|
-
{buttonProps && (<Button type='button' size='extra-large' label={buttonProps.label} color={buttonProps.color} backgroundColor={buttonProps.backgroundColor} onClick={() => buttonProps.onClick()} fullWidth />)}
|
|
14
|
+
{buttonProps && (<Button type='button' size='extra-large' label={buttonProps.label} color={buttonProps.color} backgroundColor={buttonProps.backgroundColor} onClick={() => buttonProps.onClick()} fullWidth bold />)}
|
|
25
15
|
</div>
|
|
26
16
|
)
|
|
27
17
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.container {
|
|
2
|
-
@apply bg-main-dark-blue border-0 rounded-md p-
|
|
2
|
+
@apply bg-main-dark-blue border-0 rounded-md p-4 flex flex-col items-center gap-y-4 w-full;
|
|
3
3
|
}
|
|
4
4
|
.helpText {
|
|
5
5
|
@apply text-sm text-center mx-6 text-white font-normal;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
import React from 'react'
|
|
3
|
+
import PropTypes from 'prop-types'
|
|
4
|
+
import Icons from './icons'
|
|
5
|
+
import styles from './PlatformaticIcon.module.css'
|
|
6
|
+
|
|
7
|
+
function PlatformaticIcon ({ iconName, color, onClick, size, classes, tip }) {
|
|
8
|
+
let icon = React.createElement(Icons[`${iconName}`], {
|
|
9
|
+
color,
|
|
10
|
+
size,
|
|
11
|
+
tip
|
|
12
|
+
})
|
|
13
|
+
if (onClick) {
|
|
14
|
+
let className = styles.cursorPointer
|
|
15
|
+
if (classes) className += ` ${classes}`
|
|
16
|
+
icon = (<span className={className} onClick={onClick}>{icon}</span>)
|
|
17
|
+
}
|
|
18
|
+
return icon
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
PlatformaticIcon.propTypes = {
|
|
22
|
+
/**
|
|
23
|
+
* iconName
|
|
24
|
+
*/
|
|
25
|
+
iconName: PropTypes.string.isRequired,
|
|
26
|
+
/**
|
|
27
|
+
* color
|
|
28
|
+
*/
|
|
29
|
+
color: PropTypes.string,
|
|
30
|
+
/**
|
|
31
|
+
* size
|
|
32
|
+
*/
|
|
33
|
+
size: PropTypes.string,
|
|
34
|
+
/**
|
|
35
|
+
* onClick
|
|
36
|
+
*/
|
|
37
|
+
onClick: PropTypes.func,
|
|
38
|
+
/**
|
|
39
|
+
* classes
|
|
40
|
+
*/
|
|
41
|
+
classes: PropTypes.string,
|
|
42
|
+
/**
|
|
43
|
+
* tip
|
|
44
|
+
*/
|
|
45
|
+
tip: PropTypes.string
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
PlatformaticIcon.defaultProps = {
|
|
49
|
+
iconName: null,
|
|
50
|
+
color: 'green',
|
|
51
|
+
size: 'small',
|
|
52
|
+
onClick: () => {},
|
|
53
|
+
classes: null,
|
|
54
|
+
tip: null
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export default PlatformaticIcon
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React, { useState } from 'react'
|
|
2
2
|
import Icons from './icons'
|
|
3
|
-
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
4
|
-
import { faChevronLeft, faPlusCircle } from '@fortawesome/free-solid-svg-icons'
|
|
5
3
|
import styles from './Sidebar.module.css'
|
|
6
4
|
import ReactTooltip from 'react-tooltip'
|
|
7
5
|
import HorizontalSeparator from './HorizontalSeparator'
|
|
6
|
+
import PlatformaticIcon from './PlatformaticIcon'
|
|
8
7
|
import PropTypes from 'prop-types'
|
|
9
8
|
|
|
10
9
|
function Sidebar (props) {
|
|
@@ -25,17 +24,6 @@ function Sidebar (props) {
|
|
|
25
24
|
onClickItemSelectedParent(index)
|
|
26
25
|
}
|
|
27
26
|
|
|
28
|
-
function renderItemIcon (iconName, title, isSelected) {
|
|
29
|
-
if (iconName) {
|
|
30
|
-
return React.createElement(Icons[`${iconName}`], {
|
|
31
|
-
size: 'small',
|
|
32
|
-
color: isSelected ? 'green' : 'white',
|
|
33
|
-
tip: title
|
|
34
|
-
})
|
|
35
|
-
}
|
|
36
|
-
return (<></>)
|
|
37
|
-
}
|
|
38
|
-
|
|
39
27
|
return (
|
|
40
28
|
<div className={`${styles.container} ${collapsed && styles.collapsed}`}>
|
|
41
29
|
{collapsed
|
|
@@ -61,7 +49,11 @@ function Sidebar (props) {
|
|
|
61
49
|
: (
|
|
62
50
|
<>
|
|
63
51
|
<button type='button' className={styles.buttonCollapse} onClick={() => { setCollapsed(true) }}>
|
|
64
|
-
<
|
|
52
|
+
<PlatformaticIcon
|
|
53
|
+
iconName='CircleBackIcon'
|
|
54
|
+
color='white'
|
|
55
|
+
size='normal'
|
|
56
|
+
/>
|
|
65
57
|
</button>
|
|
66
58
|
<div className={styles.title} data-testid='lateral-bar-title'>
|
|
67
59
|
{title}
|
|
@@ -72,7 +64,11 @@ function Sidebar (props) {
|
|
|
72
64
|
return (
|
|
73
65
|
<React.Fragment key={index}>
|
|
74
66
|
<button className={`${styles.buttonItem} ${collapsed && styles.buttonItemCollapsed}`} type='button' onClick={() => onClickItemSelected(index)}>
|
|
75
|
-
{
|
|
67
|
+
{item.iconName && (<PlatformaticIcon
|
|
68
|
+
iconName={item.iconName}
|
|
69
|
+
color={isSelected ? 'green' : 'white'}
|
|
70
|
+
tip={item.title}
|
|
71
|
+
/>)}
|
|
76
72
|
<div className={`${styles.item} ${isSelected ? styles.itemSelected : ''}`}>
|
|
77
73
|
<span className={styles.itemSubTitle}>{item.subTitle}</span>
|
|
78
74
|
<span className={styles.itemTitle}>{item.title}</span>
|
|
@@ -84,7 +80,11 @@ function Sidebar (props) {
|
|
|
84
80
|
})}
|
|
85
81
|
{/* <Button label='Add' buttonClass='transparent' icon={faPlus} color='white' size='small' inClick={onClickAdd}/> */}
|
|
86
82
|
<button className={`${styles.buttonItem} ${collapsed && styles.buttonItemCollapsed}`} onClick={onClickAdd}>
|
|
87
|
-
<
|
|
83
|
+
<PlatformaticIcon
|
|
84
|
+
iconName='CircleAddIcon'
|
|
85
|
+
color='white'
|
|
86
|
+
tip={addTitle}
|
|
87
|
+
/>
|
|
88
88
|
{!collapsed && <span className={styles.item}>{addTitle}</span>}
|
|
89
89
|
</button>
|
|
90
90
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.container {
|
|
2
|
-
@apply max-w-[216px] w-full p-4 border border-white rounded-md h-auto relative;
|
|
2
|
+
@apply max-w-[216px] w-full p-4 border border-white rounded-md h-auto relative min-h-[80vh];
|
|
3
3
|
transition: max-width 0.2s linear;
|
|
4
4
|
}
|
|
5
5
|
.collapsed {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
@apply border rounded-md p-1 border-white;
|
|
13
13
|
}
|
|
14
14
|
.buttonCollapse {
|
|
15
|
-
@apply absolute border
|
|
15
|
+
@apply absolute border-0 rounded-full right-[-0.875rem];
|
|
16
16
|
/* Override tailwind dist button[type='button]: background: transparent*/
|
|
17
17
|
@apply bg-main-dark-blue !important;
|
|
18
18
|
top: 1rem;
|
|
@@ -2,38 +2,28 @@ import React from 'react'
|
|
|
2
2
|
import PropTypes from 'prop-types'
|
|
3
3
|
import styles from './Preview.module.css'
|
|
4
4
|
import HorizontalSeparator from '../HorizontalSeparator'
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
function renderItemIcon (iconName, color) {
|
|
8
|
-
if (iconName) {
|
|
9
|
-
return React.createElement(Icons[`${iconName}`], {
|
|
10
|
-
color,
|
|
11
|
-
size: 'small'
|
|
12
|
-
})
|
|
13
|
-
}
|
|
14
|
-
return (<></>)
|
|
15
|
-
}
|
|
5
|
+
import PlatformaticIcon from '../PlatformaticIcon'
|
|
16
6
|
|
|
17
7
|
function renderLink (value) {
|
|
18
8
|
return (<a className={styles.link} href={value} target='_blank' rel='noreferrer'>{value}</a>)
|
|
19
9
|
}
|
|
20
10
|
|
|
21
|
-
function renderParagraph (value, afterValueIcon,
|
|
11
|
+
function renderParagraph (value, afterValueIcon, afterValueIconColor, onClickAfterValueIcon) {
|
|
22
12
|
return (
|
|
23
13
|
<>
|
|
24
14
|
<p className={styles.value}>
|
|
25
15
|
{value}
|
|
26
|
-
{afterValueIcon && (<
|
|
16
|
+
{afterValueIcon && (<PlatformaticIcon iconName={afterValueIcon} color={afterValueIconColor} classes={styles.afterIcon} onClick={() => onClickAfterValueIcon} />)}
|
|
27
17
|
</p>
|
|
28
18
|
</>
|
|
29
19
|
)
|
|
30
20
|
}
|
|
31
|
-
function Preview ({ title, value, isLink, children, afterValueIcon,
|
|
21
|
+
function Preview ({ title, value, isLink, children, afterValueIcon, afterValueIconColor, onClickAfterValueIcon }) {
|
|
32
22
|
return (
|
|
33
23
|
<>
|
|
34
24
|
<div className={styles.container}>
|
|
35
25
|
<p className={styles.title}>{title}</p>
|
|
36
|
-
{isLink ? renderLink(value) : renderParagraph(value, afterValueIcon,
|
|
26
|
+
{isLink ? renderLink(value) : renderParagraph(value, afterValueIcon, afterValueIconColor, onClickAfterValueIcon)}
|
|
37
27
|
</div>
|
|
38
28
|
{children}
|
|
39
29
|
<HorizontalSeparator color='main-dark-green' opacity={20} marginBottom={10} marginTop={10} />
|
|
@@ -49,7 +39,10 @@ Preview.propTypes = {
|
|
|
49
39
|
/**
|
|
50
40
|
* value
|
|
51
41
|
*/
|
|
52
|
-
value: PropTypes.
|
|
42
|
+
value: PropTypes.oneOfType([
|
|
43
|
+
PropTypes.string,
|
|
44
|
+
PropTypes.number
|
|
45
|
+
]),
|
|
53
46
|
/**
|
|
54
47
|
* isLink
|
|
55
48
|
*/
|
|
@@ -61,7 +54,7 @@ Preview.propTypes = {
|
|
|
61
54
|
/**
|
|
62
55
|
* afterValueIcon
|
|
63
56
|
*/
|
|
64
|
-
afterValueIcon: PropTypes.
|
|
57
|
+
afterValueIcon: PropTypes.string,
|
|
65
58
|
/**
|
|
66
59
|
* afterValueIconColor
|
|
67
60
|
*/
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import styles from './Icons.module.css'
|
|
3
|
+
|
|
4
|
+
const CircleAddIcon = ({ color = 'green', size = 'normal' }) => {
|
|
5
|
+
const className = `${styles.noShrinkForFlex} ` + styles[`${color}`]
|
|
6
|
+
let icon = <></>
|
|
7
|
+
switch (size) {
|
|
8
|
+
case 'small':
|
|
9
|
+
icon = (
|
|
10
|
+
<svg
|
|
11
|
+
width={18}
|
|
12
|
+
height={18}
|
|
13
|
+
viewBox='0 0 18 18'
|
|
14
|
+
fill='none'
|
|
15
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
16
|
+
className={className}
|
|
17
|
+
>
|
|
18
|
+
<circle cx={9} cy={9} r={8} stroke='none' />
|
|
19
|
+
<path
|
|
20
|
+
d='M4 9H14'
|
|
21
|
+
stroke='none'
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d='M9 14L9 4.00002'
|
|
27
|
+
stroke='none'
|
|
28
|
+
strokeLinecap='round'
|
|
29
|
+
strokeLinejoin='round'
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
)
|
|
33
|
+
break
|
|
34
|
+
default:
|
|
35
|
+
break
|
|
36
|
+
}
|
|
37
|
+
return icon
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export default CircleAddIcon
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as React from 'react'
|
|
2
|
+
import styles from './Icons.module.css'
|
|
3
|
+
|
|
4
|
+
const CircleBackIcon = ({ color = 'green', size = 'normal' }) => {
|
|
5
|
+
const className = `${styles.noShrinkForFlex} ` + styles[`${color}`]
|
|
6
|
+
let icon = (
|
|
7
|
+
<svg
|
|
8
|
+
width={26}
|
|
9
|
+
height={26}
|
|
10
|
+
viewBox='0 0 26 26'
|
|
11
|
+
fill='none'
|
|
12
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
13
|
+
className={className}
|
|
14
|
+
>
|
|
15
|
+
<circle cx={13} cy={13} r={12} fill='none' stroke='none' />
|
|
16
|
+
<path
|
|
17
|
+
d='M14.5 7L8.5 13L14.5 19'
|
|
18
|
+
stroke='none'
|
|
19
|
+
strokeLinecap='round'
|
|
20
|
+
strokeLinejoin='round'
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
)
|
|
24
|
+
switch (size) {
|
|
25
|
+
case 'small':
|
|
26
|
+
icon = (
|
|
27
|
+
<svg
|
|
28
|
+
width={18}
|
|
29
|
+
height={18}
|
|
30
|
+
viewBox='0 0 18 18'
|
|
31
|
+
fill='none'
|
|
32
|
+
xmlns='http://www.w3.org/2000/svg'
|
|
33
|
+
className={className}
|
|
34
|
+
>
|
|
35
|
+
<circle cx={9} cy={9} r={8} stroke='none' />
|
|
36
|
+
<path
|
|
37
|
+
d='M10 5L6 9L10 13'
|
|
38
|
+
stroke='none'
|
|
39
|
+
strokeLinecap='round'
|
|
40
|
+
strokeLinejoin='round'
|
|
41
|
+
/>
|
|
42
|
+
</svg>
|
|
43
|
+
)
|
|
44
|
+
break
|
|
45
|
+
default:
|
|
46
|
+
break
|
|
47
|
+
}
|
|
48
|
+
return icon
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export default CircleBackIcon
|
|
@@ -18,23 +18,23 @@ const UpgradeIcon = ({ color = 'green', size = 'normal' }) => {
|
|
|
18
18
|
<path
|
|
19
19
|
d='M73.5692 71.2499C70.4961 74.9505 65.8773 77.3043 60.7127 77.3043C55.2863 77.3043 50.4624 74.7057 47.4009 70.6768'
|
|
20
20
|
stroke='none'
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
strokeWidth={6.5}
|
|
22
|
+
strokeLinecap='round'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
24
|
/>
|
|
25
25
|
<path
|
|
26
26
|
d='M23.2957 51.3793L17.6102 51.3793C16.1675 51.3793 15 52.5551 15 54.0082L15 66.8661C15 68.3192 16.1675 69.495 17.6102 69.495L23.2957 69.495C24.3778 69.495 25.3554 70.1738 25.7351 71.1967L28.4782 78.5003C28.8483 79.4946 28.5921 80.6226 27.8138 81.3491L24.074 84.8576C22.973 85.89 22.973 87.649 24.0645 88.691L32.9677 97.161C33.9549 98.1074 35.5115 98.117 36.5176 97.1897L41.4343 92.6775C42.2126 91.97 43.3326 91.7884 44.2913 92.2377L50.8405 95.2968C51.7707 95.727 52.3592 96.6639 52.3592 97.6868L52.3592 102.371C52.3592 103.824 53.5267 105 54.9694 105L65.9608 105C67.4035 105 68.571 103.824 68.571 102.371L68.571 97.4573C68.571 96.3197 69.3018 95.3064 70.3744 94.9527L77.9393 92.4671C78.8315 92.1804 79.8091 92.3907 80.502 93.0216L84.9346 97.0654C86.0167 98.05 87.6967 97.9545 88.6553 96.8455L96.7517 87.5247C97.6819 86.4541 97.5965 84.8289 96.5619 83.8634L93.088 80.613C92.3191 79.9056 92.0534 78.8062 92.3951 77.8216L94.749 71.0342C95.1192 69.973 96.1063 69.2656 97.2168 69.2656L102.39 69.2656C103.833 69.2656 105 68.0898 105 66.6367L105 54.2472C105 52.7941 103.833 51.6183 102.39 51.6183L97.2168 51.6183'
|
|
27
27
|
stroke='none'
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
strokeWidth={6.5}
|
|
29
|
+
strokeLinecap='round'
|
|
30
|
+
strokeLinejoin='round'
|
|
31
31
|
/>
|
|
32
32
|
<path
|
|
33
33
|
d='M59.1684 15.3455L37.5 36.8033L48.75 36.8034L48.75 60.1728L71.25 60.1728L71.25 37.7592L82.5 37.7592L59.1684 15.3455Z'
|
|
34
34
|
stroke='none'
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
strokeWidth={6.5}
|
|
36
|
+
strokeLinecap='round'
|
|
37
|
+
strokeLinejoin='round'
|
|
38
38
|
/>
|
|
39
39
|
</svg>
|
|
40
40
|
)
|
|
@@ -4,6 +4,8 @@ import ApiEmptyIcon from './ApiEmptyIcon'
|
|
|
4
4
|
import AppIcon from './AppIcon'
|
|
5
5
|
import AppListIcon from './AppListIcon'
|
|
6
6
|
import AppEmptyIcon from './AppEmptyIcon'
|
|
7
|
+
import CircleAddIcon from './CircleAddIcon'
|
|
8
|
+
import CircleBackIcon from './CircleBackIcon'
|
|
7
9
|
import CircleExclamationIcon from './CircleExclamationIcon'
|
|
8
10
|
import CircleCloseIcon from './CircleCloseIcon'
|
|
9
11
|
import CircleCloseHoverIcon from './CircleCloseHoverIcon'
|
|
@@ -25,6 +27,8 @@ export default {
|
|
|
25
27
|
AppIcon,
|
|
26
28
|
AppListIcon,
|
|
27
29
|
AppEmptyIcon,
|
|
30
|
+
CircleAddIcon,
|
|
31
|
+
CircleBackIcon,
|
|
28
32
|
CircleExclamationIcon,
|
|
29
33
|
CircleCloseIcon,
|
|
30
34
|
CircleCloseHoverIcon,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import PlatformaticIcon from '../components/PlatformaticIcon'
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Platformatic/PlatformaticIcon',
|
|
6
|
+
component: PlatformaticIcon
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const Template = (args) => <PlatformaticIcon {...args} />
|
|
10
|
+
export const PlatformaticIconDefault = Template.bind({})
|
|
11
|
+
PlatformaticIconDefault.args = {
|
|
12
|
+
iconName: 'CopyIcon',
|
|
13
|
+
onClick: () => alert('clicked')
|
|
14
|
+
}
|