@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
8 lines • 372 B
JavaScript
export const renderStatus = (type, theme) => {
if (type === "success") return theme.orbit.colorTextSuccess;
if (type === "warning") return theme.orbit.colorTextWarning;
if (type === "critical") return theme.orbit.colorTextCritical;
if (type === "info") return theme.orbit.colorTextInfo;
return theme.orbit.paletteCloudNormalHover;
};
export default renderStatus;