import { Meta, Story } from '@storybook/react/types-6-0' import React from 'react' import { Zap } from 'lucide-react' import Component from '.' export default { title: 'DZEIO/Footer', component: Component, parameters: { layout: 'fullscreen' } } as Meta export const Basic: Story = (args: any) => let tmp = Basic.bind({}) tmp.args = { links: [{name: 'test1', path: '/'}, {name: 'test2', path: '/'}, {name: 'test3', path: '/'}], socials: [{icon: Zap, href: '/'}, {icon: '/16-16.svg', href: '/'}, {icon: Zap, href: '/'}] } export const Normal = tmp