@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
10 lines (9 loc) • 406 B
TypeScript
import React from 'react';
import type { IToggleStandAlone } from './types/toggle';
/**
* @description
* Toggle component is a component that can be used to switch between two states.
* @param {React.PropsWithChildren<IToggleStandAlone>} props
* @returns {JSX.Element}
*/
export declare const ToggleStandAlone: React.ForwardRefExoticComponent<IToggleStandAlone & React.RefAttributes<HTMLDivElement>>;