@pandacss/studio
Version:
The automated token documentation for Panda CSS
25 lines (18 loc) • 796 B
TypeScript
/* eslint-disable */
import type { SystemStyleObject, ConditionalValue } from '../types/index';
import type { Properties } from '../types/csstype';
import type { SystemProperties } from '../types/style-props';
import type { DistributiveOmit } from '../types/system-types';
import type { Tokens } from '../tokens/index';
export interface StackProperties {
align?: SystemProperties["alignItems"]
justify?: SystemProperties["justifyContent"]
direction?: SystemProperties["flexDirection"]
gap?: SystemProperties["gap"]
}
interface StackStyles extends StackProperties, DistributiveOmit<SystemStyleObject, keyof StackProperties > {}
interface StackPatternFn {
(styles?: StackStyles): string
raw: (styles?: StackStyles) => SystemStyleObject
}
export declare const stack: StackPatternFn;