Files
2025-12-17 17:55:13 +01:00

9 lines
245 B
JavaScript

import React from "react";
export var DefaultContext = {
color: undefined,
size: undefined,
className: undefined,
style: undefined,
attr: undefined
};
export var IconContext = React.createContext && React.createContext(DefaultContext);