Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmrs committed Jun 5, 2019
1 parent 5a700c8 commit d2a0cf0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions src/components/BlockLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const BlockLink = styled('a', { shouldForwardProp })(
opacity: 1,
transition: 'opacity .25s ease-in',
":hover": {
cursor: "pointer"
cursor: "pointer",
opacity: .6,
transition: 'opacity .25s ease-in'
}
Expand All @@ -49,7 +49,6 @@ const BlockLink = styled('a', { shouldForwardProp })(
BlockLink.defaultProps = {
display: "block",
bg: "transparent",
cursor: "pointer"
}

export default A
export default BlockLink
8 changes: 4 additions & 4 deletions src/components/BlockLinkGlow.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
textStyle
} from "styled-system"

const BlockLink = styled('a', { shouldForwardProp })(
const BlockLinkGlow = styled('a', { shouldForwardProp })(
space,
width,
maxWidth,
Expand All @@ -39,17 +39,17 @@ const BlockLink = styled('a', { shouldForwardProp })(
opacity: .75,
transition: 'opacity .25s ease-in',
":hover": {
cursor: "pointer"
cursor: "pointer",
opacity: 1,
transition: 'opacity .25s ease-in'
}
}
)

BlockLink.defaultProps = {
BlockLinkGlow.defaultProps = {
display: "block",
bg: "transparent",
cursor: "pointer"
}

export default A
export default BlockLinkGlow
2 changes: 1 addition & 1 deletion src/components/Flex.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ Flex.defaultProps = {

}

export default Div
export default Flex

1 comment on commit d2a0cf0

@vercel
Copy link

@vercel vercel bot commented on d2a0cf0 Jun 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.