import type { Meta, StoryObj } from '@storybook/nextjs-vite' import { TripAdvisorChip } from './index' const meta: Meta = { title: 'Components/TripAdvisorChip', component: TripAdvisorChip, argTypes: { rating: { control: { type: 'number', min: 0, max: 5, step: 0.1, }, }, }, } export default meta type Story = StoryObj export const PrimaryDefault: Story = { args: { rating: 4.5, }, }