UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

14 lines (13 loc) 370 B
import React from "react"; interface Props { children: [JSX.Element, JSX.Element]; minWidth?: number; boxShadow?: boolean; transitionClassName?: string; transitionType?: string; transitionDuration?: number; showAnimation?: boolean; hideAnimation?: boolean; } declare const Dropdown: React.FC<Props>; export default Dropdown;