/
home
/
techb158
/
balacoffee.com
/
wp-content
/
themes
/
Divi
/
common
/
stories
/
branded-modal
/
/home/techb158/balacoffee.com/wp-content/themes/Divi/common/stories/branded-modal
mkdir
upload
Name
Size
Mode
Actions
fullmodal.stories.js
1016
0644
edit
dl
rm
header.stories.js
1368
0644
edit
dl
rm
modal.stories.js
665
0644
edit
dl
rm
Edit:
/home/techb158/balacoffee.com/wp-content/themes/Divi/common/stories/branded-modal/header.stories.js
(1368B)
// External dependencies. import React from 'react'; // Internal dependencies. import CommonIcon from '@common-ui/common-icon/common-icon'; import Button from '@common-ui/controls/button/button'; import Header from '@common-ui/branded-modal/header'; export default { title: 'Branded Modal/Header', component: Header, argTypes: { onClose: { action: 'closed', table: { disable: true, }, }, additionalButton: { action: 'additionalButtonClicked', table: { disable: true, }, }, }, args: { style: { width: '450px', }, }, }; export const Default = { args: { title: 'Default Header', showCloseButton: true, }, }; export const WithoutCloseButton = { args: { title: 'Header without close button', showCloseButton: false, }, }; export const WithAdditionalButton = { args: { title: 'Header with additional button', showCloseButton: true, additionalButton: () => ( <Button className='et-common-library__portability-button' onClick={() => {}} > <CommonIcon size='14' icon='portability' color='#fff' /> </Button> ), }, }; export const WithCustomClassName = { args: { title: 'Header with custom class name', showCloseButton: true, className: 'storybook-header-custom-class', }, };
Save
cmd:
run