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

16 lines (15 loc) 763 B
import React from 'react'; import { IButtonStandAlone } from './types/button'; export declare const ButtonStandAloneStructure: (props: IButtonStandAlone) => JSX.Element; /** * Represents the standalone button component. * @see {@link https://kubit.es/standalone-components/button/button-standalone/} * * @function ButtonStandAlone * @category StandAlone Components * @param {React.PropsWithChildren<IButtonStandAlone>} props - The props for the component. * @param {React.ForwardedRef<HTMLButtonElement>} ref - The ref for the component. * @returns {JSX.Element} - The JSX element representing the button component. * */ export declare const ButtonStandAlone: React.ForwardRefExoticComponent<IButtonStandAlone & React.RefAttributes<HTMLButtonElement>>;