UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

14 lines (13 loc) 458 B
import React from 'react'; import { IOptionStandAlone } from './types/option'; declare const OptionStandAlone: React.ForwardRefExoticComponent<IOptionStandAlone & React.RefAttributes<HTMLElement | undefined>>; /** * @description * Option component is used to render an option. * @param {React.PropsWithChildren<IOptionStandAlone>} props * @returns {JSX.Element} * @constructor * @example * <Option label="Option 1" /> */ export { OptionStandAlone };