UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

14 lines 327 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; //# sourceMappingURL=Select.d.ts.map