UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

13 lines (12 loc) 374 B
import React from 'react'; interface TextfieldProps { label?: string; placeholder?: string; value?: string; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; style?: React.CSSProperties; type?: string; autoComplete?: string; } declare const Textfield: ({ ...props }: TextfieldProps) => React.JSX.Element; export default Textfield;