Files
web/packages/design-system/lib/components/ChipLink/ChipLink.stories.tsx
Erik Tiekstra 891108791c feat(SW-2264): Added campaign overview page
Approved-by: Matilda Landström
2025-06-19 15:19:56 +00:00

27 lines
530 B
TypeScript

import type { Meta, StoryObj } from '@storybook/react'
import { MaterialIcon } from '../Icons/MaterialIcon'
import { ChipLink } from './ChipLink.tsx'
const meta: Meta<typeof ChipLink> = {
title: 'Components/Chip/ChipLink',
component: ChipLink,
}
export default meta
type Story = StoryObj<typeof ChipLink>
export const Default: Story = {
args: {
href: '/',
onPress: (e) => console.log(e),
children: (
<>
Link Chip
<MaterialIcon icon="chevron_right" size={20} />
</>
),
},
}