lucide-react-native
Version:
A Lucide icon library package for React Native applications.
20 lines (16 loc) • 483 B
JavaScript
/**
* @license lucide-react-native v1.21.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createContext, useContext } from 'react';
const LucideContext = createContext({
size: 24,
color: "currentColor",
strokeWidth: 2,
absoluteStrokeWidth: false
});
const useLucideContext = () => useContext(LucideContext);
export { useLucideContext };
//# sourceMappingURL=context.mjs.map