--- import Button from '../Button/button.astro'; import { Minus, Plus } from '@lucide/astro' export interface Props { id: string; min?: number; max?: number; value?: number; step?: number; } const { id, min, max, value = 0, step = 1 } = Astro.props; ---
{value}