import type { Meta, StoryObj } from '@storybook/react'; import { ArrowRightSquare } from 'lucide-react'; import { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, } from '@konobangu/design-system/components/ui/breadcrumb'; /** * Displays the path to the current resource using a hierarchy of links. */ const meta = { title: 'ui/Breadcrumb', component: Breadcrumb, tags: ['autodocs'], argTypes: {}, args: {}, render: (args) => ( Home Components Breadcrumb ), parameters: { layout: 'centered', }, } satisfies Meta; export default meta; type Story = StoryObj; /** * Displays the path of links to the current resource. */ export const Default: Story = {}; /** * Displays the path with a custom icon for the separator. */ export const WithCustomSeparator: Story = { render: (args) => ( Home Components Breadcrumb ), };