UNPKG

@prokodo/ui

Version:

UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.

4 lines (3 loc) 390 B
import { type JSX } from "react"; import type { SelectViewProps } from "./Select.model"; export declare function SelectView<Value extends string = string>({ id, disabled, name, label, fullWidth, hideLabel, iconVisible, placeholder, helperText, errorText, className, fieldClassName, labelProps, required, multiple, value, items, _clientState, }: SelectViewProps<Value>): JSX.Element | null;