import React from "react"; import { Meta, StoryObj } from "@storybook/react"; import Button from "components/buttons/Button"; import ListItem from "./ListItem"; const meta: Meta = { title: "Components/ListItem", component: ListItem, args: { graphic: "file-configuration-profile", title: "List Item Title", details: ( <> Details more details ), actions: ( <> ), }, }; export default meta; type Story = StoryObj; export const Basic: Story = {};