soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
22 lines (21 loc) • 831 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: import("react").ForwardRefExoticComponent<{
children?: import("react").ReactNode;
hideDragHandle?: boolean | undefined;
onChange?: ((visiable: boolean) => void) | undefined;
onScrimClick?(): void;
portalTo?: Element | DocumentFragment | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "children" | "onChange" | "hideDragHandle" | "onScrimClick" | "portalTo"> & import("react").RefAttributes<{
cleanup: () => void;
show: () => void;
hide: () => void;
visiable(): boolean;
}>>;
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;