--- import { cn } from '../lib/cn' import { ACCEPTED_IMAGE_TYPES } from '../lib/zodUtils' import InputFile from './InputFile.astro' import type { ComponentProps } from 'astro/types' type Props = Omit, 'accept'> & { square?: boolean value?: string | null } const { class: className, square, value, ...inputFileProps } = Astro.props ---
Preview