import { ComponentStory, ComponentMeta } from '@storybook/react'; import React from 'react'; import { Credentials } from '.'; export default { title: '2.Forms/Credentials', component: Credentials, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); export const WithTitleAndIcon = Template.bind({}); WithTitleAndIcon.args = { icon: 'windows', title: 'CLI API Key:', text: 'https://xj5hyiafwkhn.moralis.io:2053/servers', }; export const WithTitle = Template.bind({}); WithTitle.args = { title: 'CLI API Key:', text: 'https://xj5hyiafwkhn.moralis.io:2053/servers', }; export const WithCustomWidth = Template.bind({}); WithCustomWidth.args = { icon: 'windows', title: 'CLI API Key:', text: 'https://xj5hyiafwkhn.moralis.io:2053/servers', width: '700px', }; export const OneLine = Template.bind({}); OneLine.args = { text: 'https://xj5hyiafwkhn.moralis.io:2053/servers', }; export const WithCustomColors = Template.bind({}); WithCustomColors.args = { icon: 'windows', iconColor: 'green', title: 'CLI API Key:', titleColor: 'blue', text: 'https://xj5hyiafwkhn.moralis.io:2053/servers', textColor: 'red', }; export const Multiline = Template.bind({}); Multiline.args = { title: 'Multiline Text:', hasHideButton: false, text: `[common] dapp_addr = onfkgi4pc9ld.moralis.io dapp_port = 7000 token = KKKaDjYz0i [Ganache] type = http local_port = 8545 custom_domains = onfkgi4pc9ld.moralis.io`, };