smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
19 lines (18 loc) • 562 B
TypeScript
import React from "react";
import SelectProps from "./SelectProps";
import { JSXElementProps, JSXChild } from "../props";
export interface Props extends SelectProps {
boxProps?: JSXElementProps;
placeholder?: JSXChild;
badgeType?: string;
arrow?: boolean;
minWidth?: number;
boxShadow?: boolean;
transitionClassName?: string;
transitionType?: string;
transitionDuration?: number;
showAnimation?: boolean;
hideAnimation?: boolean;
}
declare const SelectBox: React.FC<Props>;
export default SelectBox;