import type { Meta, StoryObj } from "@storybook/nextjs-vite" import { MaterialIcon } from "../Icons/MaterialIcon" import { ChipLink } from "./ChipLink.tsx" const meta: Meta = { title: "Core Components/ChipLink", component: ChipLink, } export default meta type Story = StoryObj export const Default: Story = { args: { href: "/", onPress: (e) => console.log(e), children: ( <> Link Chip ), }, }