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