soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
19 lines (18 loc) • 695 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: import("react").ForwardRefExoticComponent<{
items: (import("./Helper").HelperItem & {
key: import("react").Key;
})[];
onChange?(item: import("./Helper").HelperItem & {
key: import("react").Key;
}): void;
fixed?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "onChange" | "fixed" | "items"> & import("react").RefAttributes<HTMLDivElement>>;
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;