--- import type { TransitionProps } from '@/types' type Props = TransitionProps const { type, class: className = '' } = Astro.props const transitionName = type === 'post' ? 'post-content' : 'page-content' ---