@kadconsulting/dry
Version:
KAD Reusable Component Library
31 lines (30 loc) • 947 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
import type { NavBarProps } from './NavBarTypes';
declare const _default: {
title: string;
tags: string[];
component: import("react").ForwardRefExoticComponent<NavBarProps & import("react").RefAttributes<HTMLDivElement>>;
argTypes: {
logoUrl: {
control: string;
description: string;
defaultValue: string;
};
orientation: {
control: {
type: string;
options: string[];
};
description: string;
defaultValue: string;
};
};
};
export default _default;
type Story = StoryObj<NavBarProps>;
export declare const Default: Story;
export declare const WithOrientation: Story;
export declare const WithContent: Story;
export declare const WithContentClassName: Story;
export declare const WithLoading: Story;