UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

12 lines (11 loc) 394 B
import { ViewProps } from "@vnxjs/components/types/View"; import { CSSProperties, ReactNode } from "react"; export interface PickerOptionProps extends ViewProps { className?: string; style?: CSSProperties; value?: any; label?: ReactNode; disabled?: boolean; children?: ReactNode; } export default function PickerOption(props: PickerOptionProps): JSX.Element;