UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

14 lines (10 loc) 430 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { H2Properties } from '../patterns/h2'; import type { HTMLCerberusProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface H2Props extends H2Properties, DistributiveOmit<HTMLCerberusProps<'h2'>, keyof H2Properties > {} /** * A h2 element */ export declare const H2: FunctionComponent<H2Props>