import type { Meta, StoryObj } from "@storybook/react-native-web-vite"; import { StatusLabel } from "@jobber/components-native"; import { StatusLabelBasic } from "./docs"; const meta = { title: "Components/Status and Feedback/StatusLabel", component: StatusLabel, parameters: { viewport: { defaultViewport: "mobile1" }, showNativeOnWebDisclaimer: true, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Basic: Story = { render: StatusLabelBasic, args: { text: "Success", alignment: "start", }, };