Rename directory "engines" to "languages"
This commit is contained in:
12
languages/chef/renderer/utils.tsx
Normal file
12
languages/chef/renderer/utils.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { Icon } from "@blueprintjs/core";
|
||||
import { Colors } from "@blueprintjs/core";
|
||||
|
||||
/** Common border color for dark and light, using transparency */
|
||||
export const BorderColor = Colors.GRAY3 + "55";
|
||||
|
||||
/** Map from item type to corresponding icon */
|
||||
export const ItemTypeIcons: { [k: string]: React.ReactNode } = {
|
||||
dry: <Icon icon="ring" size={12} color={Colors.RED3} />,
|
||||
liquid: <Icon icon="tint" size={12} color={Colors.BLUE3} />,
|
||||
unknown: <Icon icon="help" size={12} color={Colors.ORANGE3} />,
|
||||
};
|
Reference in New Issue
Block a user