@fvastu/animated-on-scroll-stack
Version:
The easiest way to animated on scroll your chakraui/react project
11 lines (10 loc) • 362 B
TypeScript
import { ResponsiveValue, SystemProps } from '@chakra-ui/system';
export declare type StackDirection = ResponsiveValue<'row' | 'column' | 'row-reverse' | 'column-reverse'>;
interface Options {
spacing: SystemProps['margin'];
direction: StackDirection;
}
export declare function getDividerStyles(options: Options): {
'&': any;
};
export {};