via-icons/dist/lib/cjs/iconContext.js

13 lines
394 B
JavaScript
Raw Normal View History

2024-08-22 13:58:09 -06:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IconContext = exports.DefaultContext = void 0;
var React = require("react");
exports.DefaultContext = {
color: undefined,
size: undefined,
className: undefined,
style: undefined,
attr: undefined,
};
exports.IconContext = React.createContext && React.createContext(exports.DefaultContext);