mirror of
https://github.com/dzeiocom/components.git
synced 2025-06-15 12:09:20 +00:00
20 lines
566 B
TypeScript
20 lines
566 B
TypeScript
import { Meta, Story } from '@storybook/react/types-6-0'
|
|
import React from 'react'
|
|
import { Zap } from 'react-feather'
|
|
import Component from '.'
|
|
|
|
export default {
|
|
title: 'DZEIO/Footer',
|
|
component: Component,
|
|
} as Meta
|
|
|
|
export const Basic: Story<any> = (args: any) => <Component {...args} />
|
|
|
|
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
|