UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

14 lines (13 loc) 291 B
import React from "react"; type Option = { value: string; label: string; }; interface SelectProps { options: Option[]; placeholder?: string; onChange: (value: string) => void; fullWidth?: boolean; } declare const Select: React.FC<SelectProps>; export default Select;