UNPKG

lucide-react

Version:

A Lucide icon library package for React applications.

19 lines (16 loc) 425 B
/** * @license lucide-react v0.563.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.js.map