@pandacss/studio
Version:
The automated token documentation for Panda CSS
10 lines (7 loc) • 449 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { ContainerProperties } from '../patterns/container';
import type { HTMLPandaProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface ContainerProps extends ContainerProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof ContainerProperties > {}
export declare const Container: FunctionComponent<ContainerProps>