@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 408 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
declare const linkVariantPropTypeOptions: readonly ["inline", "standalone"];
export type LinkVariantPropType = (typeof linkVariantPropTypeOptions)[number];
export type PropLinkVariant = {
variant: LinkVariantPropType;
};
export declare const validateLinkVariant: (component: Generic.Element.Component, value?: LinkVariantPropType) => void;
export {};