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