Skip to content

Commit

Permalink
icons
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Feb 13, 2018
1 parent 35418f7 commit 3d8b173
Show file tree
Hide file tree
Showing 18 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions renderer/components/hero.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import Link from 'next/link'

// Components
import SettingsIcon from './icons/settings'
import LayersIcon from './icons/layers'
import SettingsIcon from './../icons/settings'
import LayersIcon from './../icons/layers'

// Theme
import { colors, typography } from './../theme'
Expand Down
10 changes: 5 additions & 5 deletions renderer/components/settings/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { shell } from 'electron'

// Components
import Item from './item'
import ArrowRightIcon from './../icons/arrow-right'
import AwardIcon from './../icons/award'
import UploadIcon from './../icons/upload'
import DownloadIcon from './../icons/download'
import TrashIcon from './../icons/trash'
import ArrowRightIcon from './../../icons/arrow-right'
import AwardIcon from './../../icons/award'
import UploadIcon from './../../icons/upload'
import DownloadIcon from './../../icons/download'
import TrashIcon from './../../icons/trash'

// Theme
import { colors, typography } from './../../theme'
Expand Down
2 changes: 1 addition & 1 deletion renderer/components/settings/app-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { remote } from 'electron'

// Components
import Item from './item'
import ArrowRightIcon from './../icons/arrow-right'
import ArrowRightIcon from './../../icons/arrow-right'

// Theme
import { colors, typography } from './../../theme'
Expand Down
6 changes: 3 additions & 3 deletions renderer/components/settings/social.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import { shell } from 'electron'

// Components
import TwitterIcon from './../icons/twitter'
import GithubIcon from './../icons/github'
import ProductHuntIcon from './../icons/product-hunt'
import TwitterIcon from './../../icons/twitter'
import GithubIcon from './../../icons/github'
import ProductHuntIcon from './../../icons/product-hunt'

const Social = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion renderer/components/sortable/drag-handle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { SortableHandle } from 'react-sortable-hoc'

// Components
import DraggerIcon from './../icons/dragger'
import DraggerIcon from './../../icons/dragger'

const DragHandle = SortableHandle(() => <DraggerIcon />)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion renderer/pages/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Page from './../layouts/page'

// Components
import Row from './../ui/row'
import Logo from './../components/icons/logo'
import Logo from './../icons/logo'

// Services
import { getCookie } from './../services/cookies'
Expand Down

0 comments on commit 3d8b173

Please sign in to comment.