UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

10 lines (7 loc) 406 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { CqProperties } from '../patterns/cq'; import type { HTMLCerberusProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface CqProps extends CqProperties, DistributiveOmit<HTMLCerberusProps<'div'>, keyof CqProperties > {} export declare const Cq: FunctionComponent<CqProps>