@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
15 lines (14 loc) • 991 B
TypeScript
import React from 'react';
import { ActionBottomSheetUnControlledType } from './types/actionBottomSheet';
export declare const ActionBottomSheetUnControlledComponent: <V extends string | unknown>({ open, popover, closeIcon, ...props }: ActionBottomSheetUnControlledType<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
/**
* @description
* ActionBottomSheetUnControlled component is a controlled action bottom sheet that use a Popover component to show the content.
* @param {React.PropsWithChildren<ActionBottomSheetUnControlledType<V>>} props
* @returns {JSX.Element}
*/
declare const ActionBottomSheetUnControlled: <V extends string | unknown>(props: React.PropsWithChildren<ActionBottomSheetUnControlledType<V>> & {
ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof ActionBottomSheetUnControlledComponent>;
export { ActionBottomSheetUnControlled };
export { ActionBottomSheetUnControlled as ActionBottomSheet };