@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) • 752 B
TypeScript
import React from 'react';
import { IContainerStandAlone } from './types/container';
/**
* Represents the standalone container component.
* @see {@link https://kubit.es/standalone-components/container/container-standalone/}
*
* @function ContainerStandAloneComponent
* @category StandAlone Components
* @param {React.PropsWithChildren<IContainerStandAlone>} props - The props for the component.
* @param {React.ForwardedRef<HTMLDivElement>} ref - The ref for the component.
* @returns {JSX.Element} - The JSX element representing the container component.
*/
export declare const ContainerStandAlone: React.ForwardRefExoticComponent<IContainerStandAlone & {
children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>>;