UNPKG

lucide-react-native

Version:

A Lucide icon library package for React Native applications.

22 lines (17 loc) 504 B
/** * @license lucide-react-native v1.18.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. */ 'use strict'; var react = require('react'); const LucideContext = react.createContext({ size: 24, color: "currentColor", strokeWidth: 2, absoluteStrokeWidth: false }); const useLucideContext = () => react.useContext(LucideContext); exports.useLucideContext = useLucideContext; //# sourceMappingURL=context.js.map