retro-react
Version:
A React component library for building retro-style websites
22 lines (21 loc) • 583 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import { Box } from "../components/box";
declare const meta: Meta<typeof Box>;
export default meta;
declare type Story = StoryObj<typeof Box>;
/**
* Raised Panel - Classic Windows raised look
*/
export declare const RaisedPanel: Story;
/**
* Sunken Panel - Classic Windows sunken look
*/
export declare const SunkenPanel: Story;
/**
* Flat Panel - Minimal modern look
*/
export declare const FlatPanel: Story;
/**
* Panel Group - Multiple panels together
*/
export declare const PanelGroup: Story;