@cerberus-design/styled-system
Version:
Cerberus Design System Panda-CSS styled-system.
14 lines (10 loc) • 421 B
TypeScript
/* eslint-disable */
import type { FunctionComponent } from 'react'
import type { PProperties } from '../patterns/p';
import type { HTMLCerberusProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface PProps extends PProperties, DistributiveOmit<HTMLCerberusProps<'p'>, keyof PProperties > {}
/**
* A p element
*/
export declare const P: FunctionComponent<PProps>