photoncss
Version:
Go from 0 to app in seconds
15 lines (14 loc) • 486 B
TypeScript
declare type Props = {
children?: string;
className?: string;
subtitle?: string;
suffix?: string;
prefix?: string;
color?: "none" | "primary" | "secondary";
variant?: "normal" | "filled" | "outlined";
dropdown?: string[] | null;
readOnly?: boolean;
[key: string]: any;
};
export declare function InputField({ children, variant, dropdown, prefix, suffix, readOnly, subtitle, type, color, id, className, ...props }: Props): JSX.Element;
export {};