@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 { H5Properties } from '../patterns/h5';
import type { HTMLCerberusProps } from '../types/jsx';
import type { DistributiveOmit } from '../types/system-types';
export interface H5Props extends H5Properties, DistributiveOmit<HTMLCerberusProps<'h5'>, keyof H5Properties > {}
/**
* A h5 element
*/
export declare const H5: FunctionComponent<H5Props>