Skip to content

Commit 7dabbc5

Browse files
committed
Change commmon/Icons to common/icons
1 parent 161ac5b commit 7dabbc5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

client/common/Button.stories.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions';
33
import { boolean, text } from '@storybook/addon-knobs';
44

55
import Button from './Button';
6-
import { GithubIcon, DropdownArrowIcon, PlusIcon } from './Icons';
6+
import { GithubIcon, DropdownArrowIcon, PlusIcon } from './icons';
77

88
export default {
99
title: 'Common/Button',

client/common/Icons.stories.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import React from 'react';
22
import { select } from '@storybook/addon-knobs';
33

4-
import * as Icons from './Icons';
4+
import * as icons from './icons';
55

66
export default {
77
title: 'Common/Icons',
8-
component: Icons
8+
component: icons
99
};
1010

1111
export const AllIcons = () => {
12-
const names = Object.keys(Icons);
12+
const names = Object.keys(icons);
1313

14-
const SelectedIcon = Icons[select('name', names, names[0])];
14+
const SelectedIcon = icons[select('name', names, names[0])];
1515
return (
1616
<SelectedIcon />
1717
);

client/modules/User/components/APIKeyForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import PropTypes from 'prop-types';
22
import React from 'react';
33

44
import Button from '../../../common/Button';
5-
import { PlusIcon } from '../../../common/Icons';
5+
import { PlusIcon } from '../../../common/icons';
66
import CopyableInput from '../../IDE/components/CopyableInput';
77

88
import APIKeyList from './APIKeyList';

client/modules/User/components/Collection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { bindActionCreators } from 'redux';
88
import classNames from 'classnames';
99

1010
import Button from '../../../common/Button';
11-
import { DropdownArrowIcon } from '../../../common/Icons';
11+
import { DropdownArrowIcon } from '../../../common/icons';
1212
import * as ProjectActions from '../../IDE/actions/project';
1313
import * as ProjectsActions from '../../IDE/actions/projects';
1414
import * as CollectionsActions from '../../IDE/actions/collections';

client/modules/User/components/SocialAuthButton.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import styled from 'styled-components';
44

55
import { remSize } from '../../../theme';
66

7-
import { GithubIcon, GoogleIcon } from '../../../common/Icons';
7+
import { GithubIcon, GoogleIcon } from '../../../common/icons';
88
import Button from '../../../common/Button';
99

1010
const authUrls = {

0 commit comments

Comments
 (0)