Skip to content

Commit

Permalink
fix: unresolve import
Browse files Browse the repository at this point in the history
  • Loading branch information
yvmunayev committed Aug 25, 2020
1 parent 0cb522f commit 1cc5d1f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/ColorPicker/hooks/useNormalizeColors.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useMemo } from 'react';
import isValidColor from '../../../../styles/helpers/color/isValidColor';
import isValidColor from '../../../styles/helpers/color/isValidColor';

export default function useNormalizeColors(colors) {
return useMemo(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ColorPicker/saturation/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useRef, useEffect, useContext, useState } from 'react';
import { UP_KEY, DOWN_KEY, RIGHT_KEY, LEFT_KEY } from '../../../../libs/constants';
import { UP_KEY, DOWN_KEY, RIGHT_KEY, LEFT_KEY } from '../../../libs/constants';
import { hsvToRgb, rgbToRgba } from '../../../styles/helpers/color';
import { StyledColor, StyledCircle } from './styled';
import { ColorPickerContext } from '../context';
Expand Down
8 changes: 4 additions & 4 deletions src/components/ColorPicker/styled.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import styled, { css } from 'styled-components';
import { FONT_SIZE_TEXT_MEDIUM } from '../../../styles/fontSizes';
import { PADDING_SMALL, PADDING_XX_SMALL } from '../../../styles/paddings';
import { BORDER_RADIUS_3, BORDER_RADIUS_2 } from '../../../styles/borderRadius';
import { FONT_SIZE_TEXT_MEDIUM } from '../../styles/fontSizes';
import { PADDING_SMALL, PADDING_XX_SMALL } from '../../styles/paddings';
import { BORDER_RADIUS_3, BORDER_RADIUS_2 } from '../../styles/borderRadius';
import { COLOR_GRAY_1 } from '../../styles/colors';
import attachThemeAttrs from '../../../styles/helpers/attachThemeAttrs';
import attachThemeAttrs from '../../styles/helpers/attachThemeAttrs';
import Input from '../Input';
import Slider from './slider';

Expand Down

0 comments on commit 1cc5d1f

Please sign in to comment.