@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) • 411 B
TypeScript
import React from 'react';
type UseDataTableShadowParamsType = {
ref: React.RefObject<HTMLDivElement>;
headBoxShadow?: string;
leftBoxShadow?: string;
rightBoxShadow?: string;
};
type UseDataTableShadowReturnType = object;
export declare const useDataTableShadow: ({ ref, headBoxShadow, leftBoxShadow, rightBoxShadow, }: UseDataTableShadowParamsType) => UseDataTableShadowReturnType;
export {};