Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import * as React from 'react';
const buttonContext = React.createContext(undefined);
const buttonContextDefaultValue = {};
/**
* @internal
* Internal context provider used to update default values between internal components
*/ export const ButtonContextProvider = buttonContext.Provider;
/**
* @internal
* Internal context hook used to update default values between internal components
*/ export const useButtonContext = ()=>{
var _React_useContext;
return (_React_useContext = React.useContext(buttonContext)) !== null && _React_useContext !== void 0 ? _React_useContext : buttonContextDefaultValue;
};