@primer/react
Version:
An implementation of GitHub's Primer Design System using React
20 lines • 755 B
TypeScript
declare function fontStack(fonts: any): any;
declare function isShadowValue(value: any): boolean;
declare function isColorValue(value: any): boolean;
declare function filterObject(obj: any, predicate: any): {};
declare function partitionColors(colors: any): {
colors: {};
shadows: {};
};
declare function omitScale(obj: any): any;
declare const themeUtils: {
fontStack: typeof fontStack;
isShadowValue: typeof isShadowValue;
isColorValue: typeof isColorValue;
filterObject: typeof filterObject;
partitionColors: typeof partitionColors;
omitScale: typeof omitScale;
};
export { fontStack, isShadowValue, isColorValue, filterObject, partitionColors, omitScale };
export default themeUtils;
//# sourceMappingURL=theme.d.ts.map