UNPKG

@praetorian-chariot/ui

Version:

The UI component library for Chariot, built with Tailwind CSS and React.

56 lines 1.63 kB
import { StoryObj } from "@storybook/react"; import { RiskTagProps, DashedTagProps, InfoTagProps, FilterTagProps, BaseTag } from "./Tag"; declare const meta: { title: string; tags: string[]; parameters: { design: { type: string; url: string; }; }; argTypes: { onClick: { action: string; }; active: { control: "boolean"; }; severity: { control: "select"; defaultValue: string; options: string[]; }; prefix: { control: "text"; }; label: { control: "text"; defaultValue: string; }; icon: { control: "object"; }; copy: { control: "boolean"; description: string; }; }; }; export default meta; type RiskStory = StoryObj<RiskTagProps>; export declare const RiskTags: RiskStory; export declare const RiskTagsPlusCount: RiskStory; export declare const RiskTagsPlusDays: RiskStory; type RiskDropdownStory = StoryObj<RiskTagProps>; export declare const RiskDropdown: RiskDropdownStory; type DashedStory = StoryObj<DashedTagProps>; export declare const DashedTags: DashedStory; export declare const DashedTagsWithCopy: DashedStory; type InfoStory = StoryObj<InfoTagProps>; export declare const InfoTags: InfoStory; type FilterStory = StoryObj<FilterTagProps>; export declare const FilterTags: FilterStory; type BaseStory = StoryObj<typeof BaseTag>; export declare const BaseTags: BaseStory; //# sourceMappingURL=Tag.stories.d.ts.map