UNPKG

@cerberus-design/styled-system

Version:

Cerberus Design System Panda-CSS styled-system.

14 lines (10 loc) 457 B
/* eslint-disable */ import type { FunctionComponent } from 'react' import type { SmallProperties } from '../patterns/small'; import type { HTMLCerberusProps } from '../types/jsx'; import type { DistributiveOmit } from '../types/system-types'; export interface SmallProps extends SmallProperties, DistributiveOmit<HTMLCerberusProps<'small'>, keyof SmallProperties > {} /** * A small element */ export declare const Small: FunctionComponent<SmallProps>