@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
12 lines (11 loc) • 445 B
JavaScript
/*!
* KoliBri - The accessible HTML-Standard
*/
import { alignPropTypeOptions } from "../props";
import { watchValidator } from "../utils";
export const validateAlignment = (component, propName, value) => {
watchValidator(component, propName, (value) => typeof value === 'string' && alignPropTypeOptions.includes(value), new Set(alignPropTypeOptions), value, {
defaultValue: 'top',
});
};
//# sourceMappingURL=alignment.js.map