@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 367 B
TypeScript
import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { BadgeTextPropType } from '../../schema';
type InternalUnderlinedBadgeTextProps = {
badgeText: BadgeTextPropType;
label: string;
};
declare const KolInternalUnderlinedBadgeTextFc: FC<InternalUnderlinedBadgeTextProps>;
export default KolInternalUnderlinedBadgeTextFc;