--- import type { HTMLAttributes } from 'astro/types'; interface Props extends HTMLAttributes<'div'> { dir?: string; wrapperClass?: string; childrenNum: number; childrenSize?: string; speed?: string; } const { dir = 'left', wrapperClass = '', childrenNum, childrenSize = '256px', speed = '25s', } = Astro.props; ---