@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
9 lines (8 loc) • 397 B
TypeScript
import type { Generic } from 'adopted-style-sheets';
declare const labelAlignPropTypeOptions: readonly ["left", "right"];
export type LabelAlignPropType = (typeof labelAlignPropTypeOptions)[number];
export type PropLabelAlign = {
labelAlign: LabelAlignPropType;
};
export declare const validateLabelAlign: (component: Generic.Element.Component, value?: LabelAlignPropType) => void;
export {};