--- type Props = { thickness: number color?: string curved?: boolean } const { thickness, color, curved } = Astro.props const boxClass = curved ? 'dasig-curvedbox' : 'dasig-box' ---