UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

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