import type {Meta} from "@storybook/react"; import React from "react"; import {snippet} from "@heroui/theme"; import {Snippet} from "../src"; export default { title: "Components/Snippet", component: Snippet, argTypes: { variant: { control: { type: "select", }, options: ["flat", "solid", "bordered", "shadow"], }, color: { control: { type: "select", }, options: ["default", "primary", "secondary", "success", "warning", "danger"], }, radius: { control: { type: "select", }, options: ["none", "sm", "md", "lg", "full"], }, size: { control: { type: "select", }, options: ["sm", "md", "lg"], }, fullWidth: { control: { type: "boolean", }, }, disableCopy: { control: { type: "boolean", }, }, disableTooltip: { control: { type: "boolean", }, }, hideCopyButton: { control: { type: "boolean", }, }, hideSymbol: { control: { type: "boolean", }, }, symbol: { control: { type: "text", }, }, }, decorators: [ (Story) => (
), ], } as Meta; const defaultProps = { children: "npm install @heroui/react", symbol: "$", disableCopy: false, disableTooltip: false, hideCopyButton: false, hideSymbol: false, ...snippet.defaultVariants, }; export const Default = { args: { ...defaultProps, }, }; export const MultiLine = { args: { ...defaultProps, children: ["npm install @heroui/react", "yarn add @heroui/react", "pnpm add @heroui/react"], }, };