--- import type { Form as Props } from '~/types'; import Button from '~/components/ui/Button.astro'; const { inputs, textarea, disclaimer, button = 'Contact us', description = '' } = Astro.props; ---
{ inputs && inputs.map( ({ type = 'text', name, label = '', autocomplete = 'on', placeholder = '' }) => name && (
{label && ( )}
) ) } { textarea && (