@jigoooo/shared-ui
Version:
A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.
16 lines (15 loc) • 614 B
TypeScript
import { CSSProperties } from 'react';
export declare const bottomSheetOverlayStyle: CSSProperties;
export declare const getBottomSheetContainerStyle: ({ maxHeight, }: {
maxHeight: number | string;
}) => CSSProperties;
export declare const getBottomSheetStyle: ({ bottomInset }: {
bottomInset: string | number;
}) => {
flex: number;
overflow: string;
minHeight: number;
paddingBottom: string | number;
};
export declare const getBottomSheetGrabContainerStyle: (style?: CSSProperties) => CSSProperties;
export declare const getBottomSheetGrabStyle: (style?: CSSProperties) => CSSProperties;