UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

13 lines (12 loc) 582 B
import { type FunctionalComponent as FC } from '../../stencil-public-runtime'; import type { JSXBase } from '../../stencil-public-runtime'; import { type BadgeTextPropType, type HideLabelPropType, type KoliBriIconsProp, type LabelWithExpertSlotPropType } from '../../schema'; export type SpanProps = JSXBase.HTMLAttributes<HTMLSpanElement> & { label: LabelWithExpertSlotPropType; badgeText?: BadgeTextPropType; allowMarkdown?: boolean; icons?: KoliBriIconsProp; hideLabel?: HideLabelPropType; }; declare const KolSpanFc: FC<SpanProps>; export default KolSpanFc;