11 lines
233 B
JavaScript
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
|