@ssplib/react-components
Version:
SSP React Components
14 lines (13 loc) • 434 B
TypeScript
export default function MultInput({ name, required, title, customPlaceholder, defaultValue, xs, sm, watchValue, inputMinLength, inputMaxLength, md, ...props }: {
name: string;
title?: string;
watchValue?: string;
customPlaceholder?: string;
required?: boolean;
defaultValue?: string;
inputMinLength?: number;
inputMaxLength?: number;
xs?: number;
sm?: number;
md?: number;
}): JSX.Element;