@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
12 lines (11 loc) • 425 B
TypeScript
import React from 'react';
type UseTableShadowParamsType = {
ref: React.RefObject<HTMLDivElement>;
headBoxShadow?: string;
leftBoxShadow?: string;
rightBoxShadow?: string;
disabled?: boolean;
};
type UseTableShadowReturnType = object;
export declare const useTableShadow: ({ ref, headBoxShadow, leftBoxShadow, rightBoxShadow, disabled, }: UseTableShadowParamsType) => UseTableShadowReturnType;
export {};