UNPKG

smart-react-components

Version:

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

22 lines (21 loc) 617 B
import React from "react"; import { SizeProps } from "../props/size-props"; import { JSXElementProps, JSXChild, Value, ValueMix, SetValue } from "../props"; export interface Props extends SizeProps { elementProps?: JSXElementProps; children: JSXChild; value: Value; searchValue?: string; disabled?: boolean; box?: boolean; type?: string; fill?: boolean; shape?: string; hover?: boolean; waveEffect?: string; space?: boolean; active?: ValueMix; setActive?: SetValue<ValueMix>; } declare const Option: React.FC<Props>; export default Option;