UNPKG

chakra-ui

Version:

Responsive and accessible React UI components built with React and Emotion

15 lines (11 loc) 379 B
import * as React from "react"; import { BoxProps } from "../Box/index"; import { InputProps } from "../Input/index"; export interface ISelect { children?: React.ReactNode; placeholder?: string | number; wrapperProps?: BoxProps; } export type SelectProps = ISelect & InputProps; declare const Select: React.ForwardRefExoticComponent<SelectProps>; export default Select;