Files
web/packages/design-system/lib/components/ChipButton/ChipButton.stories.tsx
Erik Tiekstra df32c08350 feat(SW-2043): Added new room packages filter
* feat(SW-2043): Added new room packages filter

* fix(SW-2043): Fixed issue with not updating price when selecting pet room

Approved-by: Tobias Johansson
Approved-by: Matilda Landström
2025-04-01 09:54:09 +00:00

56 lines
1.1 KiB
TypeScript

import 'react-material-symbols/rounded'
import type { Meta, StoryObj } from '@storybook/react'
import { fn } from '@storybook/test'
import { MaterialSymbol } from 'react-material-symbols'
import { ChipButton } from './ChipButton.tsx'
import { config as chipButtonConfig } from './variants'
const meta: Meta<typeof ChipButton> = {
title: 'Components/Chip/ChipButton',
component: ChipButton,
argTypes: {
variant: {
control: 'select',
type: 'string',
options: Object.keys(chipButtonConfig.variants.variant),
},
onPress: {
table: {
disable: true,
},
},
},
}
export default meta
type Story = StoryObj<typeof ChipButton>
export const Default: Story = {
args: {
onPress: fn(),
children: (
<>
Button Chip
<MaterialSymbol icon="chevron_right" size={20} />
</>
),
},
}
export const Outlined: Story = {
args: {
variant: 'Outlined',
onPress: fn(),
children: (
<>
Button Chip
<MaterialSymbol icon="keyboard_arrow_down" size={20} />
</>
),
},
}