import { PoweroffOutlined } from "@ant-design/icons"; import { Col, Row, Space } from "antd"; import React from "react"; import { Button } from "../Starship"; import "../Styles/index.scss"; import { ReactComponent as Circle } from "../Assets/Circle.svg"; import { ReactComponent as Downn } from "../Assets/Down.svg"; import { ReactComponent as Plus } from "../Assets/Plus.svg"; import { ReactComponent as Minus } from "../Assets/Minus.svg"; import type { Meta, StoryObj } from "@storybook/react"; const meta: Meta = { title: "Example/Button", component: Button, argTypes: { styleType: { control: { type: "select", }, options: [ "positive", "negative", "neutral", "primary", "ghost", "badge", "tertiary", "secondary", "link", ], }, }, }; export default meta; type Story = StoryObj; // More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args export const Template: Story = { render: (args) => ( <> {/* primary button only text */}

Button

{/* primary buttons with icon */} {/* primary button only text */} ), };