soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
18 lines (17 loc) • 615 B
TypeScript
/// <reference types="react" />
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: import("react").ForwardRefExoticComponent<{
sd?: "inset" | "full" | undefined;
direction?: "vertical" | "horizon" | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "sd" | "direction"> & import("react").RefAttributes<HTMLHRElement>>;
parameters: {
layout: string;
};
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Horizen: Story;
export declare const Vertical: Story;