UNPKG

krypton-ui

Version:

<h1 align="center"> <p align="center"><a href="https://krypton-ui.com"><img src="https://user-images.githubusercontent.com/7073241/224507377-395bffc0-9ff7-4d74-865b-f734394a7e7e.png" alt="Krypton" width="200"></a></p> </h1>

25 lines (24 loc) 698 B
import { ComponentPropsWithRef } from "react"; import { Color } from "../../types"; type FullWidthType = { fullWidth: boolean; }; type ReadColorType = { color?: Color; readOnly?: boolean; }; type AutocompleteType = ReadColorType & { value: string; onChange: (value: string) => void; suggestions: string[]; name?: string; helperText?: string; placeholder?: string; className?: string; error?: boolean; fullWidth?: boolean; }; export type InnerStyledProps = FullWidthType; export type InputFieldStyledProps = FullWidthType & ReadColorType; export type AutocompleteProps = Omit<ComponentPropsWithRef<"input">, "onChange"> & AutocompleteType; export {};