UNPKG

lucide

Version:

A Lucide icon library package for web and javascript applications.

19 lines (16 loc) 419 B
/** * @license lucide v1.14.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ const hasA11yProp = (props) => { for (const prop in props) { if (prop.startsWith("aria-") || prop === "role" || prop === "title") { return true; } } return false; }; export { hasA11yProp }; //# sourceMappingURL=hasA11yProp.mjs.map