UNPKG

tobby-my-storybook-components

Version:

Para practicar React Components + Storybook + NPM Publish

27 lines (26 loc) 784 B
import type { StoryObj } from '@storybook/react'; import { MyLabel } from "../../components/MyLabel"; declare const meta: { title: string; component: ({ label, size, allCaps, color, fontColor }: import("../../components/MyLabel").MyLabelProps) => import("react/jsx-runtime").JSX.Element; tags: string[]; argTypes: { size: { control: string; }; color: { control: string; }; fontColor: { control: string; }; }; args: {}; }; export default meta; type Story = StoryObj<typeof MyLabel>; export declare const Basic: Story; export declare const AllCaps: Story; export declare const Secondary: Story; export declare const Tertiary: Story; export declare const CustomFontColor: Story;