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