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