Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
fix(Newsletter): StyledInput not passing props
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Dec 16, 2019
1 parent 2b16cb6 commit 7f473a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/NewsletterWidget/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import localStore from '@src/utils/local-store'
import axios from 'axios'
import { Link } from '@components/Link'

const StyledInput = () => (
const StyledInput = props => (
<input
sx={{
width: `100%`,
Expand All @@ -22,6 +22,7 @@ const StyledInput = () => (
lineHeight: 1.5,
padding: `0 .5rem`,
}}
{...props}
/>
)

Expand Down

0 comments on commit 7f473a4

Please sign in to comment.