import React from 'react'; import { ProductTour } from '.'; export default { title: 'Components/Multichain/ProductTour', component: ProductTour, argTypes: { prevIcon: { control: 'boolean', }, title: { control: 'text', }, description: { control: 'text', }, currentStep: { control: 'text', }, totalSteps: { control: 'text', }, positionObj: { control: 'text', }, onClick: { action: 'onClick', }, onHide: { action: 'onHide', }, closeMenu: { action: 'closeMenu', }, }, args: { prevIcon: true, title: 'Permissions', description: 'Find your connected accounts and manage permissions here.', currentStep: '1', totalSteps: '3', }, }; const Template = (args) => { return ; }; export const DefaultStory = Template.bind({}); export const CustomPopoverTipPosition = Template.bind({}); CustomPopoverTipPosition.args = { positionObj: '80%', };