@chakra-ui/layout
Version:
Chakra UI layout components that give you massive speed
13 lines (10 loc) • 366 B
TypeScript
import { ResponsiveValue, SystemProps } from '@chakra-ui/system';
type StackDirection = ResponsiveValue<"row" | "column" | "row-reverse" | "column-reverse">;
interface Options {
spacing: SystemProps["margin"];
direction: StackDirection;
}
declare function getDividerStyles(options: Options): {
"&": any;
};
export { StackDirection, getDividerStyles };