mirror of
https://github.com/dzeiocom/components.git
synced 2025-04-23 11:22:11 +00:00
21 lines
433 B
TypeScript
21 lines
433 B
TypeScript
import { Meta } from '@storybook/react/types-6-0'
|
|
import React from 'react'
|
|
import { Zap } from 'lucide-react'
|
|
import Box from '../Box'
|
|
import Component from '.'
|
|
|
|
export default {
|
|
title: 'DZEIO/Breadcrumb',
|
|
component: Component
|
|
} as Meta
|
|
|
|
export const Breadcrumb = (args: any) => <Box><Component {...args}>Button</Component></Box>
|
|
Breadcrumb.args = {
|
|
items: [{
|
|
display: "Pouet",
|
|
href: '/pouet'
|
|
}, {
|
|
display: "Pouet",
|
|
}]
|
|
}
|