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