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 { H4Properties } from '../patterns/h4'; import type { HTMLCerberusProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface H4Props extends H4Properties, DistributiveOmit<HTMLCerberusProps<'h4'>, keyof H4Properties > {} /** * A h4 element */ export declare const H4: FunctionComponent<H4Props>