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) 660 B
import React from 'react'; import { IQuickButton } from './types/quickButton'; declare const QuickButtonBoundary: <V extends string | unknown>(props: IQuickButton<V>, ref: React.ForwardedRef<HTMLButtonElement> | undefined | null) => JSX.Element; /** * @description * QuickButton component is a button component that can be used to create a button. * @param {React.PropsWithChildren<IQuickButton<V>>} props * @returns {JSX.Element} */ declare const QuickButton: <V>(props: React.PropsWithChildren<IQuickButton<V>> & { ref?: React.ForwardedRef<HTMLButtonElement> | undefined | null; }) => ReturnType<typeof QuickButtonBoundary>; export { QuickButton };