UNPKG

@pandacss/studio

Version:

The automated token documentation for Panda CSS

10 lines (7 loc) 428 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { CenterProperties } from '../patterns/center'; import type { HTMLPandaProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface CenterProps extends CenterProperties, DistributiveOmit<HTMLPandaProps<'div'>, keyof CenterProperties > {} export declare const Center: FunctionComponent<CenterProps>