@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) • 437 B
TypeScript
import { ForwardedRef, Ref } from 'react';
type HeaderShadowType = {
boxShadow?: string;
showShadowFrom?: number;
};
type HeaderShadowProps = {
ref: ForwardedRef<HTMLDivElement> | undefined;
shadow?: HeaderShadowType;
};
type HeaderShadowReturnValues = {
headerRef: Ref<HTMLDivElement> | undefined;
};
export declare const useHeaderShadow: ({ ref, shadow }: HeaderShadowProps) => HeaderShadowReturnValues;
export {};