@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
11 lines (10 loc) • 412 B
TypeScript
import React from 'react';
import { IDividerStandAlone } from './types/divider';
/**
* @description
* DividerStandAlone component is a wrapper component that can be used to wrap other components.
* @param {IDividerStandAlone} props
* @returns {JSX.Element}
* @constructor
*/
export declare const DividerStandAlone: React.ForwardRefExoticComponent<IDividerStandAlone & React.RefAttributes<HTMLDivElement>>;