soda-material
Version:
A component library that may follow [material design 3](https://m3.material.io/components) (a.k.a. material you)
12 lines (11 loc) • 313 B
TypeScript
import type { StoryObj } from '@storybook/react';
import { Details } from './Details';
declare const meta: {
title: string;
component: typeof Details;
tags: string[];
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Outlined: Story;
export declare const Filled: Story;