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