Files
react/node_modules/tailwind-merge/dist/lib/from-theme.mjs
2025-12-28 20:50:08 +00:00

11 lines
233 B
JavaScript

function fromTheme(key) {
var themeGetter = function themeGetter(theme) {
return theme[key] || [];
};
themeGetter.isThemeGetter = true;
return themeGetter;
}
export { fromTheme };
//# sourceMappingURL=from-theme.mjs.map