From 9ad2169d3a3b7cd07eab9ffba4533e5c09b6be9d Mon Sep 17 00:00:00 2001 From: p1eXu5 <37133440+p1eXu5@users.noreply.github.com> Date: Tue, 3 Nov 2020 07:31:03 +0300 Subject: [PATCH] fix convertHexToRGB and rbgToHex selectors --- src/Fable.MaterialUI.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Fable.MaterialUI.fs b/src/Fable.MaterialUI.fs index 37af2ba..5a0a165 100644 --- a/src/Fable.MaterialUI.fs +++ b/src/Fable.MaterialUI.fs @@ -189,10 +189,10 @@ module ColorManipulator = import "recomposeColor" "@material-ui/core/styles/colorManipulator" let convertHexToRGB (hex: string): string = - import "convertHexToRGB" "@material-ui/core/styles/colorManipulator" + import "hexToRgb" "@material-ui/core/styles/colorManipulator" let rbgToHex (color: string): string = - import "rbgToHex" "@material-ui/core/styles/colorManipulator" + import "rgbToHex" "@material-ui/core/styles/colorManipulator" let decomposeColor (color: string): ColorObject = import "decomposeColor" "@material-ui/core/styles/colorManipulator"