UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

10 lines (7 loc) 421 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { StackProperties } from '../patterns/stack'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface StackProps extends StackProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof StackProperties > {} export declare const Stack: FunctionComponent<StackProps>