UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

11 lines (10 loc) 503 B
import type { Meta, StoryObj } from "@storybook/react"; import { Ui89InputPassword } from "./Ui89InputPassword"; declare const meta: Meta<typeof Ui89InputPassword>; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story; export declare const TypingEmitsOnChange: Story; export declare const DoesNotTrimWhitespaceAtTheBeginning: Story; export declare const DoesNotRemoveWhitespaceAtTheEnd: Story; export declare const DoesNotRemoveExtraWhitespaceInTheMiddle: Story;