@explita/daily-toolset-components
Version:
A lightweight and versatile collection of TypeScript utility functions and form components, inspired by ShadCN UI, designed for seamless everyday development. Enhance your Node.js, React, and Next.js projects with a well-structured suite of helpers for st
4 lines (3 loc) • 300 B
TypeScript
import React from "react";
import { SelectProps } from "../input.type";
export declare function Select({ addEmpty, align, name, label, size, options, isDisabled, isRequired, isSearchable, isClearable, defaultValue, handleSelection, error, placeholder, classNames, }: SelectProps): React.JSX.Element;